StackTrace class of System.Diagnostics helps us to interpret stack trace to get calling method name, local variables etc.
for (int i = 0; i < new StackTrace().FrameCount; i++){Console.WriteLine(new StackTrace().GetFrame(i).GetMethod().Name);}
{
}