Getting “because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly” error when deserializing a Json object
问题 Please help me. Where I am missing info? I need to deserialize the following JSON string. {"results":[{"series":[{"name":"PWR_00000555","columns":["time","last"],"values":[["1970-01-01T00:00:00Z",72]]}]}]} For this, I have defined my class: public class Serie { public Serie() { this.Points = new List<object[]>(); } [JsonProperty(PropertyName = "results")] public string results { get; set; } [JsonProperty(PropertyName = "series")] public string sries { get; set; } [JsonProperty(PropertyName =