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.
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.