vote up 4 vote down star

How can I get programmatic access to the call stack?

flag

3 Answers

vote up 14 vote down check

Try System.Diagnostics.StackTrace.

link|flag
vote up 0 vote down

@Brad, the right way is to use the StackTrace and StackFrame classes as James mentions. Throwing an exception just to get the stack trace is completely misusing exceptions.

link|flag
vote up 5 vote down

You can use the StackTrace and StrackFrame classes in System.Diagnostics.

link|flag

Your Answer

Get an OpenID
or

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