2012年2月14日
摘要: 1、MethodInfo类是在System.Reflection命名空间底下,既然是在Reflection空间底下。故名思议关于反射相关的操作,其中比较重要的方法是Invoke()方法,它是加载相同程序集的方法。简单用法 string command = "AnnouncementSave"; //通过反射获取调用的具体方法System.Reflection.MethodInfo method = this.GetType().GetMethod(command); if (method != null) { //Execute Method method.Invoke(t 阅读全文
posted @ 2012-02-14 11:59 朝扬 阅读(6353) 评论(0) 推荐(1) 编辑