json string to json object 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: c# json convert
jsonString = File.ReadAllText(fileName);
weatherForecast = JsonSerializer.Deserialize<WeatherForecast>(jsonString);
Example 5: string json to object c#
var resultCon = JsonConvert.DeserializeObject<Dictionary<string, string>>(jsonStr);
string json = "{\"ID\": 1, \"Name\": \"Abdullah\"}";
User user = JsonConvert.DeserializeObject<User>(json);