you can use
JArray a = JArray.Parse(jsonStr);
I tried to parse your json using a class derived from http://json2csharp.com/ . I think you need to parse it directly.
List<RootObject> yourObject= JsonConvert.DeserializeObject<List<RootObject>>(jsonStr);
Since you need a Json Object, you can try the first option
source
share