using System.Collections.Generic;
public static void Main()
Dictionary<string, object> myObject = JsonConvert.DeserializeObject<Dictionary<string, object>>("{'title': 'Something','name': 'A Name','width': 500,'height': 500}");
foreach(var propertyKey in myObject.Keys)
Console.WriteLine("myObject['{0}'] = {1}", propertyKey, myObject[propertyKey]);