How do I convert a JSON array like this
[{\"myKey\":\"myValue\"}, {\"anotherKey\":\"anotherValue\"}]
to a C# Dictionary wi
Since you can only deserialize from an object, do just that by manipulating the JSON string a little first. Wrap it in an object:
json = String.Format("{{\"result\":{0}}}", json);