Better way to convert strings in json object to ints in c# class
Given the following JSON object [ { "change_date": "20211118 2134", "inspection_id": "74207177", "insp_unit_id": "185883333", } ] And the following C# class. public class Root { public string change_date { get; set; } public string inspection_id { get; set; } public…