Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

_Type::GetConstructor Method (array<Type^>^)

 

Provides COM objects with version-independent access to the Type::GetConstructor method.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (in mscorlib.dll)

ConstructorInfo^ GetConstructor(
	array<Type^>^ types
)

Parameters

types
Type: array<System::Type^>^

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 Type::EmptyTypes.

Return Value

Type: System.Reflection::ConstructorInfo^

A ConstructorInfo object representing the public instance constructor whose parameters match the types in the parameter type array, if found; otherwise, null.

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type::GetConstructor method searches for a public instance constructor whose parameters match the types in the specified array.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft