1 得到当前类名称:
this.GetType().ToString();
2 得到当前方法名称: System.Diagnostics.StackFrame frame = new System.Diagnostics.StackFrame(true); String __FUNCTION__ = frame.GetMethod().Name;