Type.IsConstructedGenericType 属性

定义

获取指示此对象是否表示构造的泛型类型的值。 你可以创建构造型泛型类型的实例。

public:
 abstract property bool IsConstructedGenericType { bool get(); };
public:
 virtual property bool IsConstructedGenericType { bool get(); };
public abstract bool IsConstructedGenericType { get; }
public virtual bool IsConstructedGenericType { get; }
member this.IsConstructedGenericType : bool
Public MustOverride ReadOnly Property IsConstructedGenericType As Boolean
Public Overridable ReadOnly Property IsConstructedGenericType As Boolean

属性值

如果此对象表示构造泛型类型,则为 true;否则为 false

注解

构造的泛型类型具有为其所有泛型类型参数提供的显式类型。 它也称为封闭泛型类型。

当此属性为 true时,可以创建当前类型的实例;如果为 false,则不能。

适用于