原文地址为:
C#在获取当前方法名、类名
转载请注明本文地址: C#在获取当前方法名、类名
MethodBase method = new System.Diagnostics.StackTrace().GetFrame(0).GetMethod();
//类名
String className = method.ReflectedType.FullName;
//方法名
String methodName = method.Name;
转载请注明本文地址: C#在获取当前方法名、类名