在 C# 中哪个type
可以呈现这个 json 结果?
[[30.51,46.30],[31.54,45.83]]
我试过IDictionary<decimal, decimal>
但dictionary
不支持序列化,我不能使用第三方组件。
您要查找的类型是List<List<double>>
. 使用System.Web.Script.Serialization.JavaScriptSerializer
string json = "[[30.51,46.30],[31.54,45.83]]";
var listOfLists = new JavaScriptSerializer().Deserialize<List<List<double>>>(json);
一个list of lists
或一个array of arrays