Answers for "how to convert json string to c# object"

C#
25

object to json c#

using Newtonsoft.Json;

var jsonString = JsonConvert.SerializeObject(obj);
Posted by: Guest on May-29-2020
2

how to convert object in string JSON c#

var json = new JavaScriptSerializer().Serialize(obj);
Posted by: Guest on April-27-2020

Code answers related to "how to convert json string to c# object"

C# Answers by Framework

Browse Popular Code Answers by Language