JSON.NET DeserializeObject to List of Objects
I found that trying to use: JsonConvert.DeserializeObject<List<T>>() wouldn’t work for me. I found that this worked instead. JsonConvert.DeserializeObject<IEnumerable<T>>() Hope its a better late than never answer.