700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > c# 获取方法所在的命名空间 类名 方法名

c# 获取方法所在的命名空间 类名 方法名

时间:2020-10-02 13:51:41

相关推荐

c# 获取方法所在的命名空间 类名 方法名

平时我们在记录日志的时候难免会需要直接记录当前方法的路径,以便查找,但是每次都输入方法名称非常的繁琐,同时如果修改了方法名称也要去手动修改日志内容,真的是劳命伤财啊,所以有了如下方法则可解决我们的大难题啊,闲话少说,直接上代码如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using System.Reflection;namespace GetMethodNameSpace{class Program{public static string GetMethodInfo(){string str = "";//取得当前方法命名空间str += "命名空间名:" + System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Namespace + "\n";//取得当前方法类全名str += "类名:" + System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName + "\n";//取得当前方法名str += "方法名:" + System.Reflection.MethodBase.GetCurrentMethod().Name + "\n";str += "\n";StackTrace ss = new StackTrace(true);MethodBase mb = ss.GetFrame(1).GetMethod();//取得父方法命名空间str += mb.DeclaringType.Namespace + "\n";//取得父方法类名str += mb.DeclaringType.Name + "\n";//取得父方法类全名str += mb.DeclaringType.FullName + "\n";//取得父方法名str += mb.Name + "\n";return str;}public static void Main(){Console.WriteLine(GetMethodInfo());Console.ReadKey();}}}

提取公共方法如下:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。