Newtonsoft.Json.JsonConvert.DeserializeObject coming back as NULL
I'm getting back the following string from an API call: { "result": [ { "sys_id":"12d199028752a9108ae38516dabb35d3" } ] } I'm trying to deserialize it into this class" public class result { public string sys_id { get; set; } } I'm using…