MethodBuilder.IsGenericMethodDefinition Propriété

Définition

Obtient une valeur indiquant si l’objet MethodBuilder actuel représente la définition d’une méthode générique.

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

Valeur de propriété

true si l’objet MethodBuilder actuel représente la définition d’une méthode générique ; sinon, false.

Exemples

L’exemple de code suivant affiche la status d’une méthode. Ce code fait partie d’un exemple plus large fourni pour la DefineGenericParameters méthode .

// 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)

Remarques

Un MethodBuilder ne peut être utilisé que pour créer des définitions de méthode générique ; il ne peut pas être utilisé pour créer directement une méthode générique construite. Toutefois, une sous-classe de MethodBuilder peut représenter une méthode générique construite.

S’applique à

Voir aussi