I created a C# library project. The project has this line in one class:
JsonConvert.SerializeObject(objectList);
I\'m getting error saying
right click on the project and select Manage NuGet Packages.. In that select Json.NET and install
Manage NuGet Packages..
Json.NET
After installation,
use the following namespace
using Newtonsoft.Json;
then use the following to deserialize
JsonConvert.DeserializeObject