TypeBuilder::DefineConstructor Method (MethodAttributes, CallingConventions, array<Type^>^, array<array<Type^>^>^, array<array<Type^>^>^)
Adds a new constructor to the type, with the given attributes, signature, and custom modifiers.
Assembly: mscorlib (in mscorlib.dll)
public: [ComVisibleAttribute(true)] ConstructorBuilder^ DefineConstructor( MethodAttributes attributes, CallingConventions callingConvention, array<Type^>^ parameterTypes, array<array<Type^>^>^ requiredCustomModifiers, array<array<Type^>^>^ optionalCustomModifiers )
Parameters
- attributes
-
Type:
System.Reflection::MethodAttributes
The attributes of the constructor.
- callingConvention
-
Type:
System.Reflection::CallingConventions
The calling convention of the constructor.
- parameterTypes
-
Type:
array<System::Type^>^
The parameter types of the constructor.
- requiredCustomModifiers
-
Type:
array<array<System::Type^>^>^
An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding parameter, such as IsConst. If a particular parameter has no required custom modifiers, specify null instead of an array of types. If none of the parameters have required custom modifiers, specify null instead of an array of arrays.
- optionalCustomModifiers
-
Type:
array<array<System::Type^>^>^
An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding parameter, such as IsConst. If a particular parameter has no optional custom modifiers, specify null instead of an array of types. If none of the parameters have optional custom modifiers, specify null instead of an array of arrays.
| Exception | Condition |
|---|---|
| ArgumentException | The size of requiredCustomModifiers or optionalCustomModifiers does not equal the size of parameterTypes. |
| InvalidOperationException | The type was previously created using CreateType. -or- For the current dynamic type, the IsGenericType property is true, but the IsGenericTypeDefinition property is false. |
This overload is provided for designers of managed compilers.
Note |
|---|
For more information on custom modifiers, see the ECMA Partition II Metadata documentation. The documentation is available online; see ECMA C# and Common Language Infrastructure Standards on MSDN and Standard ECMA-335 - Common Language Infrastructure (CLI) on the Ecma International Web site. |
Available since 2.0
Silverlight
Available since 2.0
