C# StackTrace
2021-02-16 20:16
阅读:651
标签:get stack 调用 tostring bsp gpo new frame type C# StackTrace 标签:get stack 调用 tostring bsp gpo new frame type 原文地址:https://www.cnblogs.com/yunyun0574/p/8403530.html
StackTrace trace = new StackTrace();
//获取是哪个类来调用的
Type type = trace.GetFrame(1).GetMethod().DeclaringType;
//获取是类中的那个方法调用的
string method = trace.GetFrame(1).GetMethod().ToString();
下一篇:windows 监控
评论
亲,登录后才可以留言!