string json to class c# code example

Example 1: object to json c#

using Newtonsoft.Json;

var jsonString = JsonConvert.SerializeObject(obj);

Example 2: string to json c#

JObject json = JObject.Parse(str);

Example 3: string json to class c#

var result = JsonConvert.DeserializeObject<YourClass>(jsonstring);

Example 4: string json to object c#

var resultCon = JsonConvert.DeserializeObject<Dictionary<string, string>>(jsonStr);

//or
string json = "{\"ID\": 1, \"Name\": \"Abdullah\"}";
User user = JsonConvert.DeserializeObject<User>(json);
/*
public class User
{
    public int ID { get; set; }
    public string Name { get; set; }
}
*/

Tags:

Misc Example