Archive for Settembre 21st, 2007

Get Calling Method

Settembre 21st, 2007

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