Tag: Json.NET and VB.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 & 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#…