Click or drag to resize
TypeGetConstructor Method (Type)
Searches for a public instance constructor whose parameters match the types in the specified array.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: ConstructorInfo
An object representing the public instance constructor whose parameters match the types in the parameter type array, if found; otherwise, null.
Exceptions
ExceptionCondition
ArgumentNullExceptiontypes is null.-or- One of the elements in types is null.
ArgumentExceptiontypes is multidimensional.
See Also