c# convert string to object code example
Example 1: 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; }
}
*/
Example 2: c# convert ad objectguid to string
new Guid((System.Byte[])this.GUID).ToString()