using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
""Class"": ""Ms Morgan"",
var jo = JObject.Parse(json);
List<Student> students = jo["students"]
.Select(t => t["Student"])
foreach (Student s in students)
Console.WriteLine(s.Name + "\t" + s.Age + "\t" + s.Address) ;
public string Name {get; set; }
public int Age {get; set; }
public string Address {get; set; }