json string to c# object code example

Example 1: object to json c#

using Newtonsoft.Json;

var jsonString = JsonConvert.SerializeObject(obj);

Example 2: c# object to json string

Newtonsoft.Json.JsonConvert.SerializeObject(new {foo = "bar"})

Example 3: c# json convert

jsonString = File.ReadAllText(fileName);
weatherForecast = JsonSerializer.Deserialize<WeatherForecast>(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; }
}
*/