Possible Duplicate:
How can I add a Trace() to every method call in C#?
Is there an easy way to log all called functions (in order of execution, also passed argument values to these f-ns) in a C# application while it is being executed in debug mode in VS2010? For example, I press some button on my form, some complex code is invoked. Now I want to see what functions in what classes with what arguments.
Note that adding debug/trace info to functions is not an option!