这就是我所说的:
Public Shared Sub Test1() Test2() End Sub Public Shared Sub Test2() MsgBox(Test2.LastMethod) ' Test1 End Sub
我想如果这是可能的,System.Reflection
会被利用吗?
有什么想法吗?
查看System.Diagnostics.StackFrame类.
StackFrame frame = new StackFrame(1); MethodBase method = frame.GetMethod(); Console.WriteLine(method.Name);
作为旁注,您不应该依赖于您调用者是谁,除非您正在编写调试器或用于记录目的,否则不应该使用它.