I\'m developing an application that reads some JSON data and makes some statistics, but now I\'ve run into a problem.
I have a string like this:
{
\"posi
You can access the elements as follows:
var enumerable = (IEnumerable)values["position"]; // Will get you the enumerable ArrayList
(Dictionary)values["position"][0]; // Will get you the First element of the ArrayList
(string)values["position"][0]["someKey1"]; // Will get you someKey1 from the first position of position