Bumblebee.CallStack.GetCallingMethod C# (CSharp) Method

GetCallingMethod() private method

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

			return frame.GetMethod();
		}