I'm trying to parse a JSON string below:
\"result\": \"[{u'p_ssn': u'111451234', u'_id': '4e47e811c19a830ff9009011', u'p_hdistrict': u'U',...
Is there any easy way to parse this in .NET and get resulting object/data-structure that I can use further?
I tried JSON.NET's JObject.Parse() method but it throws an exception.