CodeTypeParameter.HasConstructorConstraint プロパティ

定義

型パラメーターにコンストラクターの制約があるかどうかを表す値を取得または設定します。

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

注釈

コンストラクター制約は、型パラメーターが既定のパブリック コンストラクター (パラメーターのないパブリック コンストラクター) を公開することをコンパイラに示します。

適用対象