Udostępnij za pośrednictwem


MethodBuilder.IsGenericMethodDefinition Właściwość

Definicja

Pobiera wartość wskazującą, czy bieżący MethodBuilder obiekt reprezentuje definicję metody ogólnej.

public:
 virtual property bool IsGenericMethodDefinition { bool get(); };
public override bool IsGenericMethodDefinition { get; }
member this.IsGenericMethodDefinition : bool
Public Overrides ReadOnly Property IsGenericMethodDefinition As Boolean

Wartość właściwości

true jeśli bieżący MethodBuilder obiekt reprezentuje definicję metody ogólnej; w przeciwnym razie false.

Przykłady

Poniższy przykład kodu przedstawia stan metody. Ten kod jest częścią większego przykładu podanego DefineGenericParameters dla metody .

// 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 SampleMethod generic? {0}",
    sampleMethodBuilder->IsGenericMethod);
Console::WriteLine(
    "Is SampleMethod a generic method definition? {0}",
    sampleMethodBuilder->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);
' 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)

Uwagi

Element MethodBuilder może służyć tylko do tworzenia definicji metod ogólnych. Nie można jej użyć do bezpośredniego utworzenia skonstruowanej metody ogólnej. Jednak podklasa MethodBuilder może reprezentować skonstruowaną metodę ogólną.

Dotyczy

Zobacz też