I have a JSON String returned by my SOAP web service in .NET. It is as follows:
{ \"checkrecord\": [ { \"rollno\":\"abc2\", \"percentage
Since you mentioned that you are using Newtonsoft.dll you can convert a JSON string to an object by using its facilities:
MyClass myClass = JsonConvert.DeserializeObject(your_json_string); [Serializable] public class MyClass { public string myVar {get; set;} etc. }