C Sharp (C#) - File IO
What will be the output of this code snippet?
Assuming class Person { public int Age { get; set; } }
using System.Text.Json;
var json = "{\"Age\":30}";
var person = JsonSerializer.Deserialize(json);
Console.WriteLine(person.Age); Assuming class Person { public int Age { get; set; } }
