using System.Collections.Generic;
public static void Main()
'somethingtwo': 'abcde-1234',
RootObj mainObj = JsonConvert.DeserializeObject<RootObj>(json);
Dictionary<string, string> firstDict = mainObj.information.report.FirstOrDefault();
string format = "{0,-4} ";
foreach (string key in firstDict.Keys)
Console.Write(string.Format(format, key));
foreach (Dictionary<string, string> dict in mainObj.information.report)
foreach (string value in dict.Values)
Console.Write(string.Format(format, value));
public string somethingone { get; set; }
public string somethingtwo { get; set; }
public Information information { get; set; }
public Dictionary<string, string>[] report { get; set; }