To Deserialize JSON data in Windows Phone 8 , the developers can utilize the json.NET .
How to Deserialize JSON data in Windows Phone 8 app ?
Below is a sample code snippet that demonstrates how to Deserialise JSON data in Windows Phone 8 app.
string inputData = string.Empty; // Get the JSon data to the inputData variable. var ACData = JsonConvert.DeserializeObject<List<string[]>>(inputData );
Leave a Reply