CodeTypeParameter.Constraints 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取类型参数的约束。
public:
property System::CodeDom::CodeTypeReferenceCollection ^ Constraints { System::CodeDom::CodeTypeReferenceCollection ^ get(); };
public System.CodeDom.CodeTypeReferenceCollection Constraints { get; }
member this.Constraints : System.CodeDom.CodeTypeReferenceCollection
Public ReadOnly Property Constraints As CodeTypeReferenceCollection
属性值
一个 CodeTypeReferenceCollection 对象,它包含类型参数的约束。
示例
下面的代码示例演示如何使用 Constraints 属性来添加新约束。 此示例是为 类提供的更大示例的 CodeTypeParameter 一部分。
kType.Constraints.Add(new CodeTypeReference(typeof(IComparable)));
kType.Constraints.Add(New CodeTypeReference(GetType(IComparable)))
注解
约束指定类型参数必须从派生或实现的类型。