public static string WhoCalledMe()
{
var st = new StackTrace();
var sf = st.GetFrame(1);
var mb = sf.GetMethod();
return mb.Name;
}
A Public Journey of Discovery
public static string WhoCalledMe()
{
var st = new StackTrace();
var sf = st.GetFrame(1);
var mb = sf.GetMethod();
return mb.Name;
}