Tag: JSON
Json.NET & VB.NET – How to Serialize an Collection?
Do you want to serialize an collection in your VB.NET application?. Json.NET supports this functionality with ease. The Collection can be an Array , Dictionary or List. You need to simply pass collection to the JsonConvert.SerializeObject static method which would serialize the collection and return you the Json string. How to Serialize a Collection in VB.NET using Json.NET ? For example , assume that you…
How to Deserialize JSON data in Windows Phone 8 app ?
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.
How to convert JSON to XML or XML to JSON in C# ?
Below is a sample code snippet demonstrating how you can convert the Json to XML and vice versa in C# using Json.NET. How to convert JSON to XML or XML to JSON in C# ?
How to return JSON from ASP.NET MVC Controller ?
If you want to return JSON data from the ASP.NET MVC Controller , we can easily do that by returning the Json like the was shown in the below sample code How to return JSON from ASP.NET MVC Controller ?