码迷,mamicode.com
首页 > Windows程序 > 详细

C#根据字符串名称 得到对应的方法

时间:2018-10-19 02:01:32      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:typeof   obj   class   type   gid   col   get   方法   字符   

  public string GetMethod(string methodName, BookingRequest bookingId)
        {
            EmailTemplate p1 = new EmailTemplate();//
            Type t = p1.GetType();
   var mi = t.GetMethod(methodName, new Type[] { typeof(BookingRequest) });  //得到对应的方法 
            //通过反射执行ReturnAutoID方法,返回AutoID值
            object body= mi.Invoke(p1, new object[] { bookingId });//方法和参数
            return body<span style="font-family: Arial, Helvetica, sans-serif;">.ToString();</span>
        }

 

C#根据字符串名称 得到对应的方法

标签:typeof   obj   class   type   gid   col   get   方法   字符   

原文地址:https://www.cnblogs.com/wangchuang/p/9813884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!