我是靠谱客的博主 动人萝莉,最近开发中收集的这篇文章主要介绍获取调用方法路径,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

namespace EF6._0Test
{
class Program
{
static void Main(string[] args)
{
int aa= 10;
aa.add(11);
Console.ReadLine();
}
}
public static class AAA
{
public static int add(this int n, int m)
{
StackFrame frame = new StackFrame(1);
//偏移一个函数位,也即是获取当前函数的前一个调用函数
MethodBase method = frame.GetMethod();
//取得调用函数
Console.WriteLine(string.Format($"{method.ReflectedType.FullName}.{method.Name}"));
return n + m;
}
}
}

 

转载于:https://www.cnblogs.com/lgxlsm/p/7908817.html

最后

以上就是动人萝莉为你收集整理的获取调用方法路径的全部内容,希望文章能够帮你解决获取调用方法路径所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部