My test json is as below..
string json = "[{Name:'John Simith',Age:35},{Name:'Pablo Perez',Age:34}]";
The json could have any key values and so I do not have a class to deserialize it with.. I can deserialize it as IEnumerable as below
IEnumerable<dynamic> data = JsonConvert.DeserializeObject<IEnumerable<dynamic>>(json);
I need to convert it to 2D object arrays : object[,] as below..
[ ['John Simith',35],['Pablo Perez',34] ]
Any help is sincerely appreciated. Thanks