摘要: /// /// 反射得到实体类的字段名称和值 /// var dict = GetProperties(model); /// /// 实体类 /// 实例化 /// public static Dictionary GetProperties(T t) { var ret = new Dictionary(); if (t == null) { return null; } Prop... 阅读全文
posted @ 2016-11-18 15:54 深南大道 阅读(437) 评论(0) 推荐(0)