摘要: 原文:http://www.cnblogs.com/tianzhiliang/archive/2012/06/29/2570275.html下面通过编写Demo的方式,验证各种反射的性能。1、传统方式反射 1 Type t = typeof(Person); 2 MethodInfo methodInfo = t.GetMethod("Say"); 3 Person person = new Person(); 4 string word = "hello"; 5 Perso... 阅读全文
posted @ 2012-07-16 16:37 流浪者的飘 阅读(288) 评论(0) 推荐(0) 编辑