Example JSON data:
{"t":"1339886","a":true,"data":[],"Type":[['Ants','Biz','Tro']]}
I found the Newtonsoft JSON.NET deserialize library for C#. If I use:
object JsonDe = JsonConvert.DeserializeObject(Json);
How can I access to the JsonDe object to get all the "Type" Data without creating a class?
The provided JSON is only an example, I have to manage a large JSON response from website an creating a class would be hard work.