using System.Collections.Generic;
public static void Main()
""type"": ""java.lang.String""
""type"": ""java.lang.String""
var root = JsonConvert.DeserializeObject<RootObject>(result);
var report_row = root.data[0].report_row;
foreach (var reportRow in report_row)
foreach (var row in reportRow)
Console.WriteLine(row.Key + ", " + row.Value);
public string name { get; set; }
public string type { get; set; }
public string name { get; set; }
public string type { get; set; }
public class ReportHeader
public C1 c1 { get; set; }
public C2 c2 { get; set; }
public ReportHeader report_header { get; set; }
public List<Dictionary<string, string>> report_row { get; set; }
public List<Datum> data { get; set; }
public List<string> message { get; set; }
public int status { get; set; }