I have this JSON and I cannot figure out how to convert it to a List of objects in C#.
Here is the JSON:
{ \"2\": { \"sell_average\": 239,
You can use
var dict = JsonConvert.DeserializeObject>(json); var items = dict.Values.ToList(); //if you want a List;