Bumblebee.CallStack.GetCallingMethod C# (CSharp) 메소드

GetCallingMethod() 개인적인 메소드

private GetCallingMethod ( ) : MethodBase
리턴 System.Reflection.MethodBase
		public static MethodBase GetCallingMethod()
		{
			var frame = new StackFrame(2, false);

			return frame.GetMethod();
		}