I've just started work on an existing .net application with about 40 active projects. While familiarizing myself with the project, I find myself constantly stepping through the application just to learn the structure and logic flow. It would make this process so much easier if I could let the application run and log every method call and review the log afterwards. I know I can add Debug.WriteLine or Trace.WriteLine statements, but adding those statements to most methods in 40 projects sounds like overkill. Are there any good alternatives to this approach?

edit: CLR Profiler introduced me to the appropriate keyword 'call graph' which led me to a duplicate question

link|improve this question

Duplicate, as noted by OP: stackoverflow.com/questions/348881/… – ire_and_curses Sep 13 '09 at 12:58
feedback

3 Answers

up vote 2 down vote accepted

The CLR Profiler can give you the stack traces you are looking for.

link|improve this answer
feedback

You might check out RedGate ANTS. The purpose of ANTS is performance profiling, but the profiler does give you a very detailed view of what the profiled application is doing, lets you slice and dice the callstack and also lets you jump over to Visual Studio. It's a bit spendy, but well worth it.

link|improve this answer
++ for "spendy". – Mike Dunlavey Dec 4 '09 at 20:52
feedback

Or you can use something like PostSharp to add the logging automatically for all the methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.