摘要: 反射获取泛型类、泛型方法 1 using System; 2 using System.Reflection; 3 4 namespace RFTest 5 { 6 //类ReflectionTest中定义了一个泛型函数DisplayType和泛型类MyGenericClass 7 class Re 阅读全文
posted @ 2019-12-03 22:31 .Neterr 阅读(1738) 评论(1) 推荐(0) 编辑
摘要: 只是演示反射的用法,使用反射的方式性能不好,可以使用表达式树的方式做对象映射。查看Linq分类里有相关文章 Mapper: public class Mapper { private static ConcurrentDictionary<Type, PropertyInfo[]> PROPTY_C 阅读全文
posted @ 2019-12-03 10:48 .Neterr 阅读(640) 评论(0) 推荐(0) 编辑
摘要: public enum EJobType { 客服 = 1, 业务员 = 2, 财务 = 3, 经理 = 4 } Type jobType = typeof(EJobType); 方式1: Array enumItems = Enum.GetValues(jobType); foreach (var 阅读全文
posted @ 2019-12-03 09:42 .Neterr 阅读(4487) 评论(0) 推荐(0) 编辑