CodeTypeParameter.HasConstructorConstraint 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示类型参数是否具有构造函数约束。
public:
property bool HasConstructorConstraint { bool get(); void set(bool value); };
public bool HasConstructorConstraint { get; set; }
member this.HasConstructorConstraint : bool with get, set
Public Property HasConstructorConstraint As Boolean
属性值
如果类型参数具有构造函数约束,则为 true
;否则为 false
。 默认值为 false
。
示例
下面的代码示例演示如何在确定类型参数是否具有构造函数约束时使用 HasConstructorConstraint 属性。 此示例是为 类提供的更大示例的 CodeTypeParameter 一部分。
kType.HasConstructorConstraint = true;
kType.HasConstructorConstraint = True
注解
构造函数约束向编译器指示类型参数公开默认公共构造函数 (没有参数) 的公共构造函数。