DynamicMethod::ToString Method ()

 

Returns the signature of the method, represented as a string.

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

public:
virtual String^ ToString() override

Return Value

Type: System::String^

A string representing the method signature.

The signature includes only types and the method name, if any. Parameter names are not included.

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

Console::WriteLine("\r\nToString: {0}", hello->ToString());

.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: