DynamicMethod.Name Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the name of the dynamic method.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property Name As String
public override string Name { get; }
Property Value
Type: System.String
The simple name of the method.
Remarks
Note: |
---|
It is not necessary to name dynamic methods. |
Examples
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.
outputBlock.Text += String.Format("Name: {0}", hello.Name) & vbLf
// Display the name specified when the dynamic method was created.
// Note that the name can be blank.
outputBlock.Text += String.Format("Name: {0}", hello.Name) + "\n";
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also