How to parse the Json data in windows phone 8

前端 未结 2 1413
情深已故
情深已故 2021-01-06 11:33

I am new to windows phone 8 development. I am working on application in which I need parse the Json. so I am not able to get the following data in windows phone 8.



        
2条回答
  •  时光取名叫无心
    2021-01-06 12:05

    var result= JObject.Parse(response)["response"]["ScoreDetail"];
                                        foreach (var item in result)
                                        {
    
    // Code to store the result
    }
    

提交回复
热议问题