using System.Collections.Generic;
public static void Main()
string jsonResponse = @"{""@odata.context"":""https://graph.microsoft.com/v1.0/$metadata#users(studentName,studentId)"",""value"":[{""studentName"":""Radha,NoMore"",""studentId"":""420""},{""studentName"":""Victoria, TooMuch"",""studentId"":""302""}]}";
var listHolder = JsonConvert.DeserializeObject<StudentListHolder>(jsonResponse);
var list = listHolder.value;
foreach (var student in list)
Console.WriteLine(student.studentId + " -> " + student.studentName);
public string studentName { get; set; }
public string studentId { get; set; }
public class StudentListHolder
public List<Student> value { get; set; }