TypeBuilder.GetConstructors(BindingFlags) 方法

定义

按照指定,返回 ConstructorInfo 对象的数组,表示为此类定义的公共和非公共构造函数。

public:
 override cli::array <System::Reflection::ConstructorInfo ^> ^ GetConstructors(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.ConstructorInfo[] GetConstructors (System.Reflection.BindingFlags bindingAttr);
[System.Runtime.InteropServices.ComVisible(true)]
public override System.Reflection.ConstructorInfo[] GetConstructors (System.Reflection.BindingFlags bindingAttr);
override this.GetConstructors : System.Reflection.BindingFlags -> System.Reflection.ConstructorInfo[]
[<System.Runtime.InteropServices.ComVisible(true)>]
override this.GetConstructors : System.Reflection.BindingFlags -> System.Reflection.ConstructorInfo[]
Public Overrides Function GetConstructors (bindingAttr As BindingFlags) As ConstructorInfo()

参数

bindingAttr
BindingFlags

这必须是 BindingFlags 中的位标志,类似于 InvokeMethodNonPublic 等中的位标志。

返回

返回 ConstructorInfo 对象的数组,表示为此类定义的指定构造函数。 如果未定义任何构造函数,则返回一个空数组。

属性

例外

不会为不完整类型实现此方法。

注解

使用 Type.GetTypeAssembly.GetType 检索类型,并在检索到的类型上使用反射。

适用于