Returns an array of ConstructorInfo objects representing constructors defined for the current class.
[Visual Basic] Overrides Public Function GetConstructors( _ ByVal bindingAttr As BindingFlags _ ) As ConstructorInfo () [C#] public override ConstructorInfo[] GetConstructors( BindingFlags bindingAttr ); [C++] public: override ConstructorInfo* GetConstructors( BindingFlags bindingAttr ) []; [JScript] public override function GetConstructors( bindingAttr : BindingFlags ) : ConstructorInfo[];
Returns an array of ConstructorInfo objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.
Depending on the value of a specified parameter, only public constructors or both public and non-public constructors will be returned.
Class initializers are available only through GetMember, GetMembers, FindMembers, and GetConstructors.
TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace