Joseph Thomas

Joseph Thomas

  • 702
  • 1k
  • 359.2k

Json deserialising.

Mar 1 2017 12:23 AM
I am stuck with trying to deserialize this json data.I tried with javascriptserializer() but i was only able to extract the first array..How to get the deserilize entire array..here is a part of my json data:
 
{
"cols": [
{
"id": "A",
"label": "",
"type": "number",
"pattern": "General"
},
{
"id": "B",
"label": "",
"type": "string"
},
{
"id": "C",
"label": "",
"type": "string"
},
{
"id": "D",
"label": "",
"type": "string"
},
{
"id": "E",
"label": "",
"type": "string"
}
],
"rows": [
{
"c": [
{
"v": 1.0,
"f": "1"
},
{
"v": "P24329"
},
{
"v": "KMHCT41B1FU652568"
},
{
"v": "971564051696"
},
{
"v": "Saad"
}
]
},
{
"c": [
{
"v": 2.0,
"f": "2"
},
{
"v": "I79066"
},
{
"v": "KMHDG4IE1FU108574"
},
{
"v": "971565187414"
},
{
"v": "Saad"
}
]
}]}
 

Answers (5)