DynamicMethod.Name Proprietà

Definizione

Ottiene il nome del metodo dinamico.

public:
 virtual property System::String ^ Name { System::String ^ get(); };
public override string Name { get; }
member this.Name : string
Public Overrides ReadOnly Property Name As String

Valore della proprietà

Nome semplice del metodo.

Esempio

Nell'esempio di codice seguente viene visualizzato il nome di un metodo dinamico. Questo esempio di codice fa parte di un esempio più ampio fornito per la DynamicMethod classe .

// Display the name specified when the dynamic method was created.
// Note that the name can be blank.
Console::WriteLine("\r\nName: {0}", hello->Name);
// Display the name specified when the dynamic method was created.
// Note that the name can be blank.
Console.WriteLine("\r\nName: {0}", hello.Name);
' Display the name specified when the dynamic method was created.
' Note that the name can be blank.
Console.WriteLine(vbCrLf & "Name: {0}", hello.Name)

Commenti

Nota

Non è necessario assegnare un nome ai metodi dinamici.

Si applica a