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

C#获得类的方法和方法参数

时间:2016-10-26 19:11:09      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:类的方法   append   mon   form   for   system   ring   方法   ram   

  Type t = typeof(CommonController);


            StringBuilder str = new StringBuilder();

            MethodInfo[] methors = t.GetMethods(BindingFlags.Instance | BindingFlags.Public);
            var md = t.GetCustomAttribute<System.ComponentModel.DescriptionAttribute>();
            str.AppendFormat("路由:" + t.Name).AppendLine("");
            str.AppendFormat("描述" + md.Description).AppendLine("");

            foreach (var v in methors)
            {

                var af = v.GetCustomAttribute<Models.Attribute.APIFunctionAttribute>();
                if (af != null)
                {
                    str.AppendFormat("\t功能标识:{0}", v.Name).AppendLine("");
                    str.AppendFormat("\t功能描述:{0}", af.Description).AppendLine("");
                    ParameterInfo[] ps = v.GetParameters();
                    str.AppendFormat("\t参数:总数{0}", ps.Length).AppendLine("");
                    foreach (ParameterInfo p in ps)
                    {
                        str.AppendFormat("\t\t名称{0}", p.Name).AppendLine("");
                        str.AppendFormat("\t\t类型{0}", p.ParameterType.FullName).AppendLine("");
                    }
                }

 

C#获得类的方法和方法参数

标签:类的方法   append   mon   form   for   system   ring   方法   ram   

原文地址:http://www.cnblogs.com/GarsonZhang/p/6001317.html

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