I\'m trying to determine how to access the data that is in my JObject and I can\'t for the life of me determine how to use it.
JObject Object = (JObject)Resp
The answer did not work for me. I dont know how it got so many votes. Though it helped in pointing me in a direction.
This is the answer that worked for me:
foreach (var x in jobj) { var key = ((JProperty) (x)).Name; var jvalue = ((JProperty)(x)).Value ; }