I have a regular C# code. I have no exceptions. I want to programmatically log the current stack trace for debugging purpose. Example:

public void executeMethod() 
{
    logStackTrace();
    method();
}
link|improve this question

55% accept rate
feedback

3 Answers

up vote 33 down vote accepted

Have a look at the System.Diagnostics namespace. Lots of goodies in there!

System.Diagnostics.StackTrace t = new System.Diagnostics.StackTrace();

This is really good to have a poke around in to learn whats going on under the hood.

I'd recommend that you have a look into logging solutions (Such as NLog, log4net or the Microsoft patterns and practices Enterprise Library) which may achieve your purposes and then some. Good luck mate!

link|improve this answer
3  
Keep in mind that StackTrace is dog slow - so use it sparingly. – Jonathan Dickinson Sep 19 '11 at 8:31
feedback

There are two ways to do this. The System.Diagnostics.StackTrace() will give you a stack trace for the current thread. If you have a reference to a Thread instance, you can get the stack trace for that via the overloaded version of StackTrace().

You may also want to check out this question.

link|improve this answer
Pulling a thread's stacktrace would actually be useful. – Spence Jun 29 '10 at 0:17
feedback

A possibly better/more light-weight alternative to System.Diagnostics.StackTrace is to use System.Environment.StackTrace which returns a string-representation of the stacktrace.

link|improve this answer
Environment.StackTrace just new's up an instance of StackTrace. – Daniel Feb 16 at 22:40
@Daniel: Yes, but System.Environment.StackTrace might be a more convenient way of accessing that information. – larsm Feb 17 at 19:47
True. But if you need to skip a frame or omit file info you'll have to use StackTrace directly. – Daniel Feb 17 at 19:51
feedback

Your Answer

 
or
required, but never shown

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