Skip to main content
.NET 6.0+

ITypesInfo.CanInstantiate(Type) Method

Indicates whether a specific type can be instantiated.

Namespace: DevExpress.ExpressApp.DC

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

bool CanInstantiate(
    Type type
)

Parameters

Name Type Description
type Type

A Type object which represents the requried type.

Returns

Type Description
Boolean

true, if the specified type can be instantiated; otherwise, false.

Remarks

This method returns true, if the specified type is persistent, non-abstract, has a public constructor and is not an interface.

See Also