Skip to main content

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.v25.2.dll

NuGet Package: DevExpress.ExpressApp

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 is passed as the args parameter, the default constructor is invoked.

See Also