TypeGetConstructor Method (Type) |
Searches for a public instance constructor whose parameters match the types in the specified array.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public ConstructorInfo GetConstructor(
Type[] types
)
Parameters
- types
- Type: SystemType
An array of Type objects representing the number, order, and type of the parameters for the desired constructor.-or- An empty array of Type objects, to get a constructor that takes no parameters. Such an empty array is provided by the static field EmptyTypes.
Return Value
Type:
ConstructorInfoAn object representing the public instance constructor whose parameters match the types in the parameter type array, if found; otherwise, null.
Exceptions See Also