I\'ve a valid JSON object that has a JSON array in it. The JSON array doesn\'t have curly braces and contains a comma separated list of mixed type in it. It looks like this:
Use this to deserialize your data into a json object...
public class Rootobject
{
public int ID { get; set; }
public int Days { get; set; }
public string Start_Date { get; set; }
public string End_Date { get; set; }
public string State { get; set; }
public int Page { get; set; }
public string Test { get; set; }
public object[][] ROWS { get; set; }
}
...and then create a utility function that converts the object[][] to your desired target object...
(created with visual studio: Edit -> Paste Special -> JSON classes)