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
}
link|improve this question

6  
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
feedback

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

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 9 down vote accepted

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

link|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
feedback

Yes ...

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

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