I have webservice hosted on Azure which is returning a JSON object. The JSON response looks like this:
HERE is my JSON RESPONSE
{
"Results":{
"output1":{
"type":"table",
"value":{
"ColumnNames":[
"Accommadation",
"Sex",
"Age",
"SiblingsAndSpouse",
"ParentChild",
"Fare",
"Embarked",
"Scored Labels",
"Scored Probabilities"
],
"ColumnTypes":[
"Int32",
"String",
"Nullable`1",
"Int32",
"Int32",
"Double",
"String",
"Int32",
"Double"
],
"Values":[
[
"2",
"male",
"35",
"0",
"0",
"20",
"C",
"0",
"0"
],
[
"2",
"male",
"35",
"0",
"0",
"20",
"C",
"0",
"0"
]
]
}
}
}
}
Kindly tell me that how to convert this response to string in C#. I am new to this please help me out,help from you guys will be highly appreciated. Thanks!!