C#获取本方法名和父方法名

主要代码:
				System.Diagnostics.StackTrace ss = new System.Diagnostics.StackTrace(true);
				System.Reflection.MethodBase mb = ss.GetFrame(1).GetMethod();
				System.Reflection.MethodBase mb1 = ss.GetFrame(0).GetMethod();
				string m = mb.Name;
				string m1 = mb1.Name;
				WriteLog($"本方法:{m1}");
				WriteLog($"父方法:{m}");
posted @ 2022-01-10 16:25  码农阿亮  阅读(137)  评论(0编辑  收藏  举报