Returns an array of System.Reflection.ConstructorInfo objects representing the public and non-public constructors defined for this class, as specified.
- bindingAttr
- This must be a bit flag from System.Reflection.BindingFlags : InvokeMethod, NonPublic, and so on.
Returns an array of System.Reflection.ConstructorInfo objects representing the specified constructors defined for this class. If no constructors are defined, an empty array is returned.
As a workaround, to retrieve the constructor of a finished type, you can retrieve the type using Type.GetType or System.Reflection.Assembly.GetType(string) and use reflection on the retrieved type.