Get Calling Method
Description: Retrieves the fully qualified name of the calling method.
Link: http://www.codekeep.net/snippets/3f718583-7ff8-49c1-bfcf-2ff271119436.aspx
System.Reflection.MethodBase methodBase = (new System.Diagnostics.StackFrame(2, false)).GetMethod(); Console.WriteLine(methodBase.ReflectedType.FullName + "." + methodBase.Name);






