convert json to object c#

Convert object to JSON C# NewtonSoft

In this post, we are going to learn how we can convert an object into JSON string in c#.

Let's explore the below examples -

Use the quickest method of converting between JSON and.NET object is using.Net Inbuilt class JsonSerializer. High performance, faster than .NET's built-in JSON serializes -

System.Web.Script.Serialization.JavaScriptSerializer jsSerializerObj = new JavaScriptSerializer();

User = new User
            {
                ID ="100023",
                Age ="29",
                FirstName = "Anil",
                LastName = "Singh"
            };

string json = jsSerializerObj.Serialize(User);

OR

Use Newtonsoft Json Convert - It allows you to create an object, populate the fields, and serialize as JSON -

var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(User);

I hope you enjoy this post.
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Convert object to JSON C# NewtonSoft Convert object to JSON C# NewtonSoft Reviewed by Anil Singh on 1:51 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^