C#在函数内部获取函数的参数

foreach (var parameter in typeof(类名).GetMethod("方法名").GetParameters())
            {
                Console.WriteLine(parameter.ParameterType);//参数类型
                Console.WriteLine(parameter.Position);//参数位置
                Console.WriteLine(parameter.Name);//参数名
            }

 

posted @ 2016-07-09 11:28  zhchsh  阅读(1839)  评论(0编辑  收藏  举报