Below is parsed json data which is of type string.
"data": [
{
"Company": {
"id": "1",
“Value": “20”,
"companyId": "2001”,
}
},
{
"Company": {
"id": "2",
“value”: "20”,
"companyId”: "2002”,
}
},
{
"Company": {
"id": “3”,
“value”: “30”,
"companyId”: "2003”,
}
},
]
var parseData = Newtonsoft.Json.Linq.JObject.Parse (e.ResponseData.ToString ());
Convert json data string store in array, Arraylist of stored Company Value. this is first time dealing with Json object string.