Skip to main content
A newer version of this page is available. .

ITypeInfo.CreateInstance(Object[]) Method

Creates an instance of the current type using the constructor that best matches the specified parameters.

Namespace: DevExpress.ExpressApp.DC

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

object CreateInstance(
    params object[] args
)

Parameters

Name Type Description
args Object[]

An array of arguments that match in number, order, and type, the parameters of the constructor to invoke.

Returns

Type Description
Object

A reference to the newly created object.

Remarks

If an empty array or null reference (Nothing in Visual Basic) is passed as the args parameter, the default constructor is invoked.

See Also