博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取到某一方法的调用者的类名、方法名、命名空间(转)
阅读量:5079 次
发布时间:2019-06-12

本文共 874 字,大约阅读时间需要 2 分钟。

1、返回当前方法所在的类名:

using System.Reflection;string className = MethodBase.GetCurrentMethod().ReflectedType.Name;

2、返回调用当前方法的方法名:

using System.Diagnostics;using System.Reflection;StackTrace   trace   =   new   StackTrace();   MethodBase   methodName =  trace.GetFrame(1).GetMethod();
3、例子
在Program类Main方法中调用TestCodon.Test方法
class Program    {        static void Main(string[] args)        {            TestCodon _tt = new TestCodon();            _tt.Test();             Console.ReadKey();        }    }
public class TestCodon : AbstractCodon    {        public void Test()        {            StackTrace trace = new StackTrace();            MethodBase methodName = trace.GetFrame(1).GetMethod();                        Console.WriteLine(methodName.DeclaringType.FullName+"."+methodName.Name);        }     }

转自  的博客

转载于:https://www.cnblogs.com/mrhgw/archive/2011/05/21/2053035.html

你可能感兴趣的文章
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>