Hi guys I'm new to this.
how would you deserialize json with this structure?
{
"0":{"name":"Simon"},
"1":{"name":"Les"},
"2":{"name":"Brian"}
"status_code":"1"
}
I already tried using JavaScriptSerializer().Deserialize(result); but it doesn't work.
any help is greatly appreciated
Thanks!