作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试序列化对象产品时出现错误。
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[3,2] { {"Small","40"}, {"Medium","44"}, {"Large","50"} };
string json = JsonConvert.SerializeObject(product);//this line is throwing an error
Array was not a one-dimensional array
有没有办法用Newtonsoft.json序列化一个二维数组
提前致谢。新航
最佳答案
Json.NET 不支持多维数组。请改用锯齿状数组。
关于asp.net - Newtonsoft.json 抛出错误 : Array was not a one-dimensional array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2678977/
我是一名优秀的程序员,十分优秀!