显示所有属性和方法属于C#.Net中的类

时间:2017-06-26 03:36:16

标签: c# asp.net .net class

在C#中,有没有办法显示属于某个类的所有方法?

可能没有内置的方法来做到这一点。但应该有办法实现这一目标。

1 个答案:

答案 0 :(得分:0)

这将显示类Program的公共和私有方法的所有静态和instanc方法作为示例,将类的名称更改为所需的类

foreach (var method in typeof(Program).GetMethods(System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance))
{
                Console.WriteLine(method.Name);
}