Namespace: Cartella.Support
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public static T CreateObject<T>(
	Type[] parameterTypes,
	Object[] parameterValues
)
where T : class, new()
Visual Basic
Public Shared Function CreateObject(Of T As {Class, New}) ( _
	parameterTypes As Type(), _
	parameterValues As Object() _
) As T
Visual C++
public:
generic<typename T>
where T : ref class, gcnew()
static T CreateObject(
	array<Type^>^ parameterTypes, 
	array<Object^>^ parameterValues
)

Parameters

parameterTypes
Type: array<System..::..Type>[]()[][]
parameterValues
Type: array<System..::..Object>[]()[][]

Type Parameters

T

See Also