Gets the executing method name.

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string GetExecutingMethodName(
	this Object obj
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function GetExecutingMethodName ( 
	obj As Object
) As String
Visual C++
public:
[ExtensionAttribute]
static String^ GetExecutingMethodName(
	Object^ obj
)
F#
static member GetExecutingMethodName : 
        obj : Object -> string 

Parameters

obj
Type: System..::..Object
Object instance

Return Value

Type: String
Method name

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also