I have a dynamic Json. from that json I have converted that json into
var mainjson = (IDictionary)SimpleJson.DeserializeObject(received);
dictionary of key value pairs
Now I get json Array from var secjson = mainjson["feelingLucky"];
now the secjson is a Json Array now I want to convert it into Dictionary of key Value Pairs. Is it possible in wp8 to convert json Array into Dictionary??

Ved PrakashPosted Feb 20, 2015, 8:29 AM
PradeepPosted Feb 20, 2015, 1:40 AM
var js = new System.Web.Script.Serialization.JavaScriptSerializer();
var objs = (object[])js.Deserialize(json, typeof(object));
foreach(Dictionary
{
var name = item["name"].ToString();
}
Try This....