System.Reflection.MethodBase.GetCurrentMethod C# (CSharp) Method

GetCurrentMethod() public static method

Returns a MethodBase object representing the currently executing method.
This member was invoked with a late-binding mechanism.
public static GetCurrentMethod ( ) : MethodBase
return MethodBase
        public static MethodBase GetCurrentMethod()
        {
            // This will be a fun one to try to implement.  Probably just need to instrument each method body to 
            // declare a $currentMethod$ variable to Type.prototype.method or Type.method
            throw new NotImplementedException();
        }