Json解析类 定义两个辅助类 public class JSONObject : Dictionary<string, object> { } public class JSONArray : List<object> { } 琮义两个辅助类 序列化 public static class JSONConvert { #region 全局变量 private static JSONObject _json = new JSONObject();//寄存器 private st…
使用方法: 引用Newtonsoft.Json.dll文件,然后引用命名空间using Newtonsoft.Json.Linq;JsonDome中有实例,照做就行 现在贴上示例代码 using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JD {…