using System.Collections.Generic;
public static void Main()
""name"": ""SplashPageToggle_dg"",
""fullPath"": ""SplashPageToggle_dg"",
""selfLink"": ""https://link"",
""name"": ""enable_app1"",
""name"": ""enable_app2"",
""name"": ""enable_app3"",
""name"": ""enable_app4"",
""name"": ""enable_app5"",
""name"": ""enable_app6"",
""name"": ""enable_app7"",
""name"": ""enable_app8"",
""name"": ""enable_app9"",
""name"": ""enable_app10"",
var splashInfo = JsonConvert.DeserializeObject<RootObject>(result);
Console.WriteLine("kind: " + splashInfo.kind);
Console.WriteLine("name: " + splashInfo.name);
Console.WriteLine("full path: " + splashInfo.fullPath);
Console.WriteLine("generation: " + splashInfo.generation);
Console.WriteLine("self link: " + splashInfo.selfLink);
Console.WriteLine("type: " + splashInfo.type);
foreach (Record rec in splashInfo.records)
Console.WriteLine(rec.name + ": " + rec.data);
public string kind { get; set; }
public string name { get; set; }
public string fullPath { get; set; }
public int generation { get; set; }
public string selfLink { get; set; }
public string type { get; set; }
public List<Record> records { get; set; }
public string name { get; set; }
public string data { get; set; }