DynamicMethod::Name Property

 

Gets the name of the dynamic method.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
property String^ Name {
	virtual String^ get() override;
}

Property Value

Type: System::String^

The simple name of the method.

System_CAPS_noteNote

It is not necessary to name dynamic methods.

The following code example displays the name of a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.

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

.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show: