摘要: NormalModel model =new Normal(){Id="001",Name="dp"}; Type type = model.GetType(); //获取类型 foreach (PropertyInfo pi in type.GetProperties()) { ... 阅读全文
posted @ 2017-02-10 17:03 pding 阅读(285) 评论(0) 推荐(0) 编辑
摘要: //dr的列名和值对应 Dictionary drDic = new Dictionary(); foreach (DataColumn item in dr.Table.Columns) { drDic.Add(item.ColumnName, dr[item.Col... 阅读全文
posted @ 2017-02-10 17:00 pding 阅读(10939) 评论(0) 推荐(1) 编辑
摘要: 1.Json对象的序列化和反序列化 代码如下: 阅读全文
posted @ 2017-02-10 15:12 pding 阅读(337) 评论(0) 推荐(0) 编辑