I am receiving some JSON data which is not in a "name:value" pair but its something like this:
[[\"ManagerID\",\"EmployeeID\",\"Domain\"],[\"2\",\"110\",\"BBU\"]]
I am not able to parse this data using JsonConvert.DeserializeObject as I get an error
"To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array. Path '', line 1, position 1."
I am using Visual Studio 2008 and .net framework 3.5. Let me know in case you need more clarification.