convert string to an json object c# wihou tknowing the object code example
Example: 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; }
}
*/