1.json文件 2.写出对应的类 //折扣 public class Discount { public string Qty { get; set; } public string percentage { get; set; } } //产品信息 public class ProductInfo { public string packing { get; set; } public string Qty { get; set; } public List<Discount> Disco
Newtonsoft.Json是一个开源的C#操作json的项目,应用起来非常简单.其github地址; 下面的代码演示了如何应用Newtonsoft.Json序列号和反序列化. using Newtonsoft.Json; using System; using System.Collections.Generic; namespace JsonNetDemo { class Program { static void Main(string[] args) { List<Project>