convert from string to json c# code example
Example 1: string to json c#
JObject json = JObject.Parse(str);
Example 2: 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; }
}
*/