public static void Main()
""NavigationRoute"": ""applicantExam/education"",
""IsEducationCollegeDegree"": null,
""previousSection"": null,
""SectionCompleted"": null
""NavigationRoute"": ""applicantExam/education"",
""IsEducationCollegeDegree"": null,
""previousSection"": null,
""SectionCompleted"": null
RootObject root = JsonConvert.DeserializeObject<RootObject>(jsonp);
foreach( var x in root.Data)
Console.WriteLine(x.Name);
public ExamSectionModel[] Data { get; set; }
public class ExamSectionModel
public int SectionId { get; set; }
public string Name { get; set; }
public string NavigationRoute { get; set; }
public int Position { get; set; }
public bool IsEducation { get; set; }
public bool? IsEducationCollegeDegree { get; set; }
public object previousSection { get; set; }
public object nextSection { get; set; }
public bool? IsCurrent { get; set; }
public bool? SectionCompleted { get; set; }