I\'m trying to deserialize some JSON data into objects for an application. Up until now it\'s been fine because the properties on the JSON data was static (key with a value)
Using Json.net you can just do:
Dictionary result = JsonConvert.DeserializeObject>(json); foreach(var item in result) Console.WriteLine(item.Key + " " + item.Value);