Searched my question and didnt find the answer, I have a JSON file like below:
{
"handle":"ABCD",
"Tracks":{
"Design":{
"rating":402
},
"Development":{
"rating":1584,
"reliability":"n/a"
},
"Specification":{
"rating":923,
"reliability":"0.13"
},
"Conceptualization":{
"rating":895
}
}
}
I am getting a dynamic object of json:
dynamic dynObj;
dynObj = JsonConvert.DeserializeObject(content);
how can I get the name of "Tracks" item? I dont know how many tag like "Design" is there nor I know the name of them...
example.Tracksfor example.