(论坛答疑点滴)如何得知调用当前方法的方法名?
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();
}
}
}
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();
}
}
}
欢迎大家阅读我的极客时间专栏《Java业务开发常见错误100例》【全面避坑+最佳实践=健壮代码】