How do I programatically write the names of the functions on the call stack to a log file? Using .net (aspnet in vs 2008).
On Aug 20, 2:09 am, "Anonymous" wrote: > How do I programatically write the names of the functions on the call stack > to a log file? System.Diagnostics.StackTrace, as in: string myCaller = new StackTrace()).GetFrame(1).GetMethod().ToString();