using System.Text.Json.Nodes;
public static void Main()
""Class Name"": ""Science"",
""Teacher\u0027s Name"": ""Jane"",
""Semester"": ""2019-01-01"",
JsonDocument document = JsonDocument.Parse(jsonString);
JsonElement root = document.RootElement;
JsonElement studentsElement = root.GetProperty("Students");
JsonElement semesterElement = root.GetProperty("Semester");
Console.WriteLine(studentsElement.ValueKind);
Console.WriteLine(studentsElement[1]);
Console.WriteLine(studentsElement[0]);
Console.WriteLine(studentsElement[0].GetProperty("Name"));