Tag: Json.NET

Json.NET & VB.NET – Installing Json.NET for VB.NET projects in Visual Studio 2015

This series of blog posts will cover how to integrate Json.NET library in your  VB.NET projects. In the first blog post , we will explore what is Json.NET and how to install it in Microsoft Visual Studio 2015. Json.NET is one of the popular high performance and open source JSON framework for the .NET Developers. It lets the developers to serialize and deserialize .NET objects…

Json.NET & C# – How to Serialize a Collection?

Do you want to serialize an collection in your C# 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 C# using JSON.NET ? For example , assume that you…

Json.NET & C# – Installing Json.NET for C# projects in Visual Studio 2015

Json.NET is one of the popular high performance and open source JSON framework for the .NET Developers. It lets the developers to serialize and deserialize .NET objects and is considered to be one of the most popular .NET library. The first version of Json.NET was released sometime in June 2006 and now this library is used is most of the popular .NET open source projects…

Json.NET & C# – How to Seralize an Object ?

One of the ways to serialize an object to JSON string in C# in the Json.NET is using the SerializeObject method defined in the JsonConvert method. The JsonConvert class provides an easy to use wrapper class and method over the JsonSerializer. How to Seralize an Object in C# using Json.NET ? Below is the sample code snippet demonstrating the usage of JsonConvert.SerializeObject method in C#…

Json.NET & Oxygene – How to Serialize an Object ?

One of the ways to serialize an object to JSON string in Oxygene # in the Json.NET is using the SerializeObject method defined in the JsonConvert method. The JsonConvert class provides an easy to use wrapper class and method over the JsonSerializer. How to Serialize an Object in Oxygene using Json.NET ? Below is the sample code snippet demonstrating the usage of JsonConvert.SerializeObject method in…

Json.NET & Oxygene – How to Deserialize an Object ?

One of the ways to Deserialize an object to JSON string in Oxygene in the Json.NET is using the DeSerializeObject method defined in the JsonConvert method. How to Deserialize an Object in Oxygene using Json.NET ? Below is a sample code snippet demonstrating how you can deserialize an object from Json string to Oxygene object using Json.NET. It takes the json string that contains the…

Json.NET & VB.NET – How to Deserialize an Object ?

One of the ways to Deserialize an object to JSON string in VB.NET in the Json.NET is using the DeSerializeObject method defined in the JsonConvert method. How to Deserialize an Object in VB.NET using Json.NET ? Below is a sample code snippet demonstrating how you can deserialize an object from Json string to VB.NET object using Json.NET. It takes the json string that contains the…

Json.NET & Oxygene – Installing Json.NET for Remobjects Oxygene projects in Visual Studio 2015

Are you a developer using RemObjects Oxygene.NET and want to use Json.NET in your project . Check this series of articles to learn how to integrate Json.NET in your Oxygene project. Json.NET is one of the popular high performance and open source JSON framework for the .NET Developers. It lets the developers to serialize and deserialize .NET objects and is considered to be one of…

Json.NET & C# – How to Deserialize an Object ?

One of the ways to Deserialize an object to JSON string in C# in the Json.NET is using the DeSerializeObject method defined in the JsonConvert method. How to Deserialize an Object in C# using Json.NET ? Below is a sample code snippet demonstrating how you can deserialize an object from Json string to C# object using Json.NET. It takes the json string that contains the…

Json.NET & VB.NET – How to Serialize an Object ?

One of the ways to serialize an object to JSON string in VB.NET in the Json.NET is using the SerializeObject method defined in the JsonConvert method. The JsonConvert class provides an easy to use wrapper class and method over the JsonSerializer. How to Serialize an Object in VB.NET using Json.NET ? Below is the sample code snippet demonstrating the usage of JsonConvert.SerializeObject method in C#…