MethodBase.IsConstructor Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un valore che indica se il metodo è un costruttore.
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
Valore della proprietà
true
se il metodo è un costruttore rappresentato da un oggetto ConstructorInfo (vedere la nota sugli oggetti ConstructorBuilder nella sezione Osservazioni); in caso contrario, false
.
Implementazioni
- Attributi
Commenti
Nota
La IsConstructor proprietà restituisce false
per un oggetto in un ConstructorBuilder tipo dinamico, a meno che il MethodAttributes.RTSpecialName flag non sia stato incluso nel attributes
parametro quando è stato definito il costruttore. L'omettezione del RTSpecialName flag non influisce sulla correttezza del costruttore generato.