How to parse this type of JSON using C# JsonConvert?
I'm trying to parse a JSON response which looks like this: { "users" : [{id: 1, ...},{id: 2, ...}], "count": 200 } into List of Users using C#. I've tried parsing it this way: Dictionary<string, List<User>> parsedJson = JsonConvert.DeserializeObject<Dictionary<string, List<User>>>(result);…