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.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
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