I have some JSON data which I have managed to obtain and place in a dynamic type.
here is how it looks as JSON.
{"fruits":{"a":"orange","b":"banana","c":"apple"},"numbers":[1,2,3,4,5,6],"holes":{"0":"first","5":"second","6":"third"}}
here is how I am collecting it using dynamic type.
dynamic myObj =JsonConvert.DeserializeObject(output);
I need to find a way to seperate the objects and place in some sort of array so that I can get hold of the values. Say I want to get hold of holes array and gain access to all of the values in some sort of loop.
Any advice would be greatly appreciated.
Thank you