I got this json:
[
{
"name":"Jon",
"age":"34",
"24_numeric_key":"somevalue"
},
{
"name":"Mia",
"age":"26",
"24_numeric_key":"somevalue"
},...
]
im able to deserialize this with:
List<Person> persons = JsonConvert.DeserializeObject<List<Person>>(json);
but with this i dont get the numeric value. How needs my class person to look like?
class Person:
class Person
{
public string name { get; set; }
public string age { get; set; }
public string _24_numeric_key { get; set; }
}