My JSON looks like this:
{"t":"1339886","a":true,"data":[],"Type":[['Ants','Biz','Tro']]}
I found the Newtonsoft JSON.NET deserialization library for C #. I tried using it as follows:
object JsonDe = JsonConvert.DeserializeObject(Json);
How can I access the JsonDe object to get all the Type data? I tried it with a loop, but it does not work because the object does not have a counter.
abc cba Jun 11 '13 at 7:36
source share