StackTrace trace = new StackTrace(); //获取是哪个类来调用的 Type type = trace.GetFrame(1).GetMethod().DeclaringType; //获取是类中的那个方法调用的 string method = trace.GetFrame(1).GetMethod().ToString();
标签:get stack 调用 tostring bsp gpo new frame type
StackTrace trace = new StackTrace(); //获取是哪个类来调用的 Type type = trace.GetFrame(1).GetMethod().DeclaringType; //获取是类中的那个方法调用的 string method = trace.GetFrame(1).GetMethod().ToString();
标签:get stack 调用 tostring bsp gpo new frame type
原文地址:https://www.cnblogs.com/yunyun0574/p/8403530.html