Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to print the current Stack Trace in .NET without any exception?

When an exception is thrown, its text contains the stack trace. Can I somehow obtain the stack trace text(including file and line) without exceptions?

public void f()
{
   //blah
   string stacktrace = ???;
   //blah
}
share|improve this question
7  
You obviously did NO research of your own, and you should know better by now. – Ben Voigt Jul 8 '11 at 12:25
1  
Do closed questions show up in Google/Bing searches? – Sung Jul 8 '11 at 12:36
Yes, they do - I just got this one as the #5 query on Google for "programmatically get stack trace site:stackoverflow.com" – Jeremy McGee Sep 19 '11 at 7:49

marked as duplicate by Ben Voigt, David, Sung, Armen Tsirunyan, Stephen Cleary Jul 8 '11 at 12:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 19 down vote accepted

Environment.StackTrace or System.Diagnostics.StackTrace if you need a more convienient (i.e. not string) representation

share|improve this answer
2  
great answer, beat me by seconds – Ben Voigt Jul 8 '11 at 12:24
Thanks, you saved my day :) – Armen Tsirunyan Jul 8 '11 at 12:24
+1 I didn't know about this.. – Sung Jul 8 '11 at 12:25

Yes ...

StackTrace stackTrace = new StackTrace();           // get call stack
StackFrame[] stackFrames = stackTrace.GetFrames()
share|improve this answer
string stackTrace = Environment.StackTrace;
share|improve this answer

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