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();
		}