Create an instance of the T.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static T CreateInstance<T>(
	params Object[] args
)
Visual Basic
Public Shared Function CreateInstance(Of T) ( 
	ParamArray args As Object()
) As T
Visual C++
public:
generic<typename T>
static T CreateInstance(
	... array<Object^>^ args
)
F#
static member CreateInstance : 
        args : Object[] -> 'T 

Parameters

args
Type: array<System..::..Object>[]()[][]
Constructor arguments

Type Parameters

T
Object type

Return Value

Type: T
Object of T type

See Also