MethodBase.IsConstructor Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si la méthode est un constructeur.
public:
property bool IsConstructor { bool get(); };
public bool IsConstructor { get; }
[System.Runtime.InteropServices.ComVisible(true)]
public bool IsConstructor { get; }
member this.IsConstructor : bool
[<System.Runtime.InteropServices.ComVisible(true)>]
member this.IsConstructor : bool
Public ReadOnly Property IsConstructor As Boolean
Valeur de propriété
true
si cette méthode est un constructeur représenté par un objet ConstructorInfo (consultez la section Notes relative aux objets ConstructorBuilder) ; sinon, false
.
Implémente
- Attributs
Remarques
Notes
La IsConstructor propriété retourne false
pour un ConstructorBuilder objet dans un type dynamique, sauf si l’indicateur MethodAttributes.RTSpecialName a été inclus dans le attributes
paramètre lors de la définition du constructeur. L’omission de l’indicateur RTSpecialName n’affecte pas l’exactitude du constructeur émis.