CodeTypeParameter コンストラクター

定義

CodeTypeParameter クラスの新しいインスタンスを初期化します。

オーバーロード

CodeTypeParameter()

CodeTypeParameter クラスの新しいインスタンスを初期化します。

CodeTypeParameter(String)

指定した型パラメーター名を使用して CodeTypeParameter クラスの新しいインスタンスを初期化します。

CodeTypeParameter()

ソース:
CodeTypeParameter.cs
ソース:
CodeTypeParameter.cs
ソース:
CodeTypeParameter.cs

CodeTypeParameter クラスの新しいインスタンスを初期化します。

public:
 CodeTypeParameter();
public CodeTypeParameter ();
Public Sub New ()

注釈

このコンストラクターを使用する場合は、 プロパティを設定する Name 必要があります。

適用対象

CodeTypeParameter(String)

ソース:
CodeTypeParameter.cs
ソース:
CodeTypeParameter.cs
ソース:
CodeTypeParameter.cs

指定した型パラメーター名を使用して CodeTypeParameter クラスの新しいインスタンスを初期化します。

public:
 CodeTypeParameter(System::String ^ name);
public CodeTypeParameter (string name);
new System.CodeDom.CodeTypeParameter : string -> System.CodeDom.CodeTypeParameter
Public Sub New (name As String)

パラメーター

name
String

型パラメーターの名前。

次のコード例は、コンストラクターを使用 CodeTypeParameter して型パラメーターを追加する方法を示しています。 この例は、 クラスに対して提供されるより大きな例の CodeTypeParameter 一部です。

CodeTypeParameter kType = new CodeTypeParameter("TKey");
kType.HasConstructorConstraint = true;
kType.Constraints.Add(new CodeTypeReference(typeof(IComparable)));
kType.CustomAttributes.Add(new CodeAttributeDeclaration(
    "System.ComponentModel.DescriptionAttribute",
        new CodeAttributeArgument(new CodePrimitiveExpression("KeyType"))));

CodeTypeReference iComparableT = new CodeTypeReference("IComparable");
iComparableT.TypeArguments.Add(new CodeTypeReference(kType));

kType.Constraints.Add(iComparableT);

CodeTypeParameter vType = new CodeTypeParameter("TValue");
vType.Constraints.Add(new CodeTypeReference(typeof(IList<System.String>)));
vType.CustomAttributes.Add(new CodeAttributeDeclaration(
    "System.ComponentModel.DescriptionAttribute",
        new CodeAttributeArgument(new CodePrimitiveExpression("ValueType"))));

class1.TypeParameters.Add(kType);
class1.TypeParameters.Add(vType);
Dim kType As New CodeTypeParameter("TKey")
kType.HasConstructorConstraint = True
kType.Constraints.Add(New CodeTypeReference(GetType(IComparable)))
kType.CustomAttributes.Add _
    (New CodeAttributeDeclaration("System.ComponentModel.DescriptionAttribute", _
        New CodeAttributeArgument(New CodePrimitiveExpression("KeyType"))))
Dim iComparableT As New CodeTypeReference("IComparable")
iComparableT.TypeArguments.Add(New CodeTypeReference(kType))

kType.Constraints.Add(iComparableT)

Dim vType As New CodeTypeParameter("TValue")
vType.Constraints.Add(New CodeTypeReference(GetType(IList(Of System.String))))
vType.CustomAttributes.Add _
    (New CodeAttributeDeclaration("System.ComponentModel.DescriptionAttribute", _
        New CodeAttributeArgument(New CodePrimitiveExpression("ValueType"))))

class1.TypeParameters.Add(kType)
class1.TypeParameters.Add(vType)

適用対象