Gets the constructors of the current Type.
Returns all the public constructors defined for the current Type.
[Visual Basic] Overloads Public Function GetConstructors() As ConstructorInfo ()
[C#] public ConstructorInfo[] GetConstructors();
[C++] public: ConstructorInfo* GetConstructors() [];
[JScript] public function GetConstructors() : ConstructorInfo[];
When implemented by a derived class, searches for the constructors defined for the current Type, using the specified binding constraints.
[Visual Basic] Overloads MustOverride Public Function GetConstructors(BindingFlags) As ConstructorInfo ()
[C#] public abstract ConstructorInfo[] GetConstructors(BindingFlags);
[C++] public: virtual ConstructorInfo* GetConstructors(BindingFlags) [] = 0;
[JScript] public abstract function GetConstructors(BindingFlags) : ConstructorInfo[];