I have a JSON Response which looks something like this.
I am trying to access the value "Hello". I am using Newtonsoft.JSON package to parse and serialize my data. I am able to access all the values, except "Hello" .
Below is a small example of how I dealt with single level arrays like menu3:
JArray dataArr = (JArray)joResponse["menu3"]; //joResponse is my JSONresponse
string[] datalist = dataArr.ToObject<string[]>(); //gave me 1234 and 5678 as string list
Any ideas/logic/resource/example would be greatly appreciated!