How to serialize and deserialize objects using NewtonSoft JSON
Some instructions on how to use Newtonsoft JSON to serialize and deserialize your objects in C# Step 1: Create a new Visual Studio project Just a simple console application will do: Step 2: Install Newtonsoft Json using Nuget Available at the NuGet site: https://www.nuget.org/packages/newtonsoft.json/ Enter the command to install Newtonsoft Json in the Visual Studio …
Continue reading ‘How to serialize and deserialize objects using NewtonSoft JSON’ »