又学一招——获得调用方法的名称

来源:互联网 发布:怎样把东西放在淘宝卖 编辑:程序博客网 时间:2024/06/03 16:20
    /// <summary>        /// 获得 调用方法的名称        /// </summary>        /// <returns>返回调用方法文件名称</returns>        private static string GetMethodName()        {            var ss = new StackTrace(true);            //index:0为本身的方法;1为调用方法;2为其上上层,依次类推            var mb = ss.GetFrame(1).GetMethod();            return mb.Name;        }

(new StackTrace()).GetFrame(1) // 0为本身的方法;1为调用方法
(new StackTrace()).GetFrame(1).GetMethod().Name; // 方法名

(new StackTrace()).GetFrame(1).GetMethod().ReflectedType.Name; // 类名

上面的方法是通过 堆栈跟踪获得的


需要添加相应的命名空间:

using System;using System.Diagnostics;using System.Reflection;

如果仅是获取当前方法名使用 MethodBase.GetCurrentMethod 方法(返回表示当前正在执行的方法的 MethodBase 对象),可以使用如下代码:

复制代码
public static void WriteSysLog(int level, string content){    MethodBase mb = MethodBase.GetCurrentMethod();    string systemModule = Environment.NewLine;    systemModule += "模块名:" + mb.Module.ToString() + Environment.NewLine;    systemModule += "命名空间名:" + mb.ReflectedType.Namespace + Environment.NewLine;    //完全限定名,包括命名空间    systemModule += "类名:" + mb.ReflectedType.FullName + Environment.NewLine;    systemModule += "方法名:" + mb.Name;    Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);    Console.WriteLine();}
复制代码

本文地址:http://www.cnblogs.com/Interkey/p/GetMethodName.html
但一般情况下是获取此记录日志方法的调用方,因此需要使用下面的代码:(此方法仅为演示)

复制代码
public static void WriteSysLog(string content){    const int level = 1000;    StackTrace ss = new StackTrace(true);    //index:0为本身的方法;1为调用方法;2为其上上层,依次类推    MethodBase mb = ss.GetFrame(1).GetMethod();    //本文地址:http://www.cnblogs.com/Interkey/p/GetMethodName.html    StackFrame[] sfs = ss.GetFrames();    string systemModule = Environment.NewLine;    systemModule += "模块名:" + mb.Module.ToString() + Environment.NewLine;    systemModule += "命名空间名:" + mb.DeclaringType.Namespace + Environment.NewLine;    //仅有类名    systemModule += "类名:" + mb.DeclaringType.Name + Environment.NewLine;    systemModule += "方法名:" + mb.Name;    Console.WriteLine("LogDate: {0}{1}Level: {2}{1}systemModule: {3}{1}content: {4}", DateTime.Now, Environment.NewLine, level, systemModule, content);    Console.WriteLine();}
复制代码

对于这一点儿,感觉有意思的是Main的调用方,System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)。

通过

StackTrace ss = new StackTrace(true);StackFrame[] sfs = ss.GetFrames();

可以得知.NET程序的执行顺序:

  1. System.Threading.ThreadHelper.ThreadStart()
  2. System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
  3. Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
  4. System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)

然后进入方法Main中。 

 
  StackFrame指的是一个.net运行的时候堆栈上的一个帧(Frame),每次进入一个方法的时候就会有一个新的方法帧压入线程执行堆栈,可以通过StackFrame获取相关的信息,比如当前代码所在文件名和行号。
  拓展方法是在.NET Framework 3.5以上版本才支持的,需要组件System.Core。

相关类:

  1. 在System.Diagnostics 命名空间中的 StackTrace 类 ,表示一个堆栈跟踪,它是一个或多个堆栈帧的有序集合。
  2. 在System.Diagnostics 命名空间中的 StackFrame 类 ,提供关于 StackFrame(表示当前线程的调用堆栈中的一个函数调用)的信息。
  3. 在System.Reflection 命名空间中的 MethodBase 类 ,提供有关方法和构造函数的信息。

另外,从 MethodBase 类 还可以获取很多其他属性,可以自行定位到System.Reflection.MethodBase 查看。

使用反射可以遍历获得类的所有属性名,方法名,成员名,其中一个有趣的小例子:通过反射将变量值转为变量名本身 



0 0
原创粉丝点击