Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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:
© 2017 Microsoft