i am trying to parse Json Array using JSON.net on C#.How can i do it easily?
[
{
"1":[
"Fax1",
"Fax2",
"Fax3"
]
},
{
"2":[
"Voice1",
"Voice2",
"Voice3"
]
},
{
"3":[
"IVR1",
"IVR2",
"IVR3"
]
}
]
JavascriptSerializeror you can use Json.Net as Devendra suggested. This is the link which uses JavascriptSerializer: stackoverflow.com/questions/401756/parsing-json-using-json-net This is Json.Net's site: james.newtonking.com/pages/json-net.aspx Don't expect that we will directly post a readymade solution for you. How can i do it easily : Everything is easy if you take the pain and read the docs once.