你如何找到呼叫者功能?

时间:2008-11-11 09:23:56

标签: c# language-features callstack

已关闭为"How can I find the method that called the current method?"

的完全重复

c#可以this吗?

void main()
{
   Hello();
}

void Hello()
{
  // how do you find out the caller is function 'main'?
}

2 个答案:

答案 0 :(得分:18)

Console.WriteLine(new StackFrame(1).GetMethod().Name);

然而,这并不强大,特别是因为优化(例如JIT内联)可以与感知的堆栈帧一起使用。

答案 1 :(得分:3)

来自here

System.Diagnostics.StackTrace st = new System.Diagnostics.StackTrace(1);
System.Diagnostics.StackFrame sf = st.GetFrame(0);
string msg = sf.GetMethod().DeclaringType.FullName + "." +
sf.GetMethod().Name;
MessageBox.Show( msg );

但也有人说这不适用于多线程。