using System; using System.Collections.Generic; using System.Linq; using System.Text; public enum JsonDataType { /// /// 未知 /// Null, /// /// 字符串数组 /// Array, /// /// List泛型集合 /// List, /// /// Dictionary泛型集合 /// Dictionary, /// /// DataTable对象 /// DataTable, /// /// DataSet对象 /// DataSet, /// /// 客户端Array对象 /// ClientArray, /// /// 客户端Object对象 /// ClientObject, /// /// 客户端DataTable对象 /// ClientDataTable }