c# 获得方法的调用者的调用者的类名,方法名

 public class SeleniumUtil
    {
        public static void getFileName()
        {
            StackTrace trace = new StackTrace();
            StackFrame frame = trace.GetFrame(1);//1代表上级,2代表上上级,以此类推
            MethodBase method = frame.GetMethod();
            String className = method.ReflectedType.Name;
            Console.Write("ClassName:" + className + "\nMethodName:" + method.Name);
        }
    }
 
    class Program
    {
        static void Main(string[] args)
        {
            SeleniumUtil.getFileName();
            Console.ReadLine();
        }
    }


取得方法调用者的类名和方法

你可能感兴趣的:(c#语法)