MethodBuilder.IsGenericMethodDefinition プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の MethodBuilder オブジェクトがジェネリック メソッドの定義を表すかどうかを示す値を取得します。
public:
virtual property bool IsGenericMethodDefinition { bool get(); };
public override bool IsGenericMethodDefinition { get; }
member this.IsGenericMethodDefinition : bool
Public Overrides ReadOnly Property IsGenericMethodDefinition As Boolean
プロパティ値
例
次のコード例では、メソッドの状態を表示します。 このコードは、 DefineGenericParameters メソッドで提供されるより大きな例の一部です。
// Use the IsGenericMethod property to find out if a
// dynamic method is generic, and IsGenericMethodDefinition
// to find out if it defines a generic method.
Console.WriteLine("Is DemoMethod generic? {0}",
demoMethod.IsGenericMethod);
Console.WriteLine("Is DemoMethod a generic method definition? {0}",
demoMethod.IsGenericMethodDefinition);
' Use the IsGenericMethod property to find out if a
' dynamic method is generic, and IsGenericMethodDefinition
' to find out if it defines a generic method.
Console.WriteLine("Is DemoMethod generic? {0}", _
demoMethod.IsGenericMethod)
Console.WriteLine("Is DemoMethod a generic method definition? {0}", _
demoMethod.IsGenericMethodDefinition)
注釈
MethodBuilderは、ジェネリック メソッド定義の作成にのみ使用できます。構築されたジェネリック メソッドを直接作成するために使用することはできません。 ただし、 MethodBuilder のサブクラスは、構築されたジェネリック メソッドを表す場合があります。