How to deserialize this JSON to a List?
I have an issue with deserializing the JSON file from the web to a List. My code is down below, but it does not execute and shows Newtonsoft.Json.JsonSerializationException. static void Main(string[] args) { List<Root> coinDatas = new List<Root>(); ; callApi(coinDatas);…