首页 > 开发 > 综合 > 正文

(论坛答疑点滴)如何得知调用当前方法的方法名?

2024-07-21 02:15:50
字体:
来源:转载
供稿:网友


收集最实用的网页特效代码!

using system;
using system.diagnostics;

namespace stacktracetest
{
 /**//// <summary>
 /// class1 的摘要说明。
 /// </summary>
 class class1
 {
  /**//// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [stathread]
  static void main(string[] args)
  {
   method2();
   //输出method2
  }
  
  static private void method1()
  {
   stacktrace st=new stacktrace(true);
   console.writeline(st.getframe(1).getmethod().name.tostring());   
  }

  static private void method2()
  {
         method1(); 
   console.readline();
  }
 }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表