My JSON string is:
string b = "\"{\"Response\":[{\"ResponseCode\":\"0\",\"ResponseMessage\":\"71a88836-57f0-4b0e-a59c-071ea6d6f1de\"}]}\"";
I want to retrieve value of ResponseCode and ResponseMessage.
When I tried something like this to parse my JSON string
var userObj = JObject.Parse(b);
I am getting Error such as:
Newtonsoft.Json.JsonReaderException: 'Error readingJObjectfromJsonReader. CurrentJsonReaderitem is not an object:String. Path '', line 1, position 3.'
Please help me to retrieve ResponseCode And ResponseMessage from the given string.