Read JSON from XML in Windows phone 7 and bind to ListBox

Powers16

New Member
I want to get JSON data from XML response. Actually web service is returning response is as follows:\[code\]<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">[ { "id": 1, "name": "paresh", }, { "id": 2, "name": "jacob", }, { "id": 3, "name": "color", }, { "id": 4, "name": "Adil color", }]</string>\[/code\]I have already referred some of the articles. And if the response was only the XML then i could have implemented as below:\[code\] MyListBox.ItemsSource = from tweet in xmlTweets.Descendants("student") select new StudentItem { ID = tweet.Element("id").Value, Name = tweet.Element("name").Value, };\[/code\]But here my problem is to get JSON which is inside, and also to display in ListBox?
 
Back
Top