vote up 2 vote down star

I ask because I couldn't find the stack trace in Visual Studio, while debugging an exception that occurred, after 30 seconds and didn't know to initially google for "Call Stack Window".

And now via the magic of StackOverflow and Google, I won't ever have to remember again. Though through the act of writing this, I will never forget. Isn't it ironic?

flag

I agree that I deserve negative votes for an Alanis Morissette reference. – Even Mien Jun 3 at 14:48

3 Answers

vote up 6 vote down check

While debugging, Debug/Windows/Call Stack

link|flag
vote up 2 vote down

Do you mean finding a stack trace of the thrown exception location? That's either Debug/Exceptions, or better - Ctrl-Alt-E. Set filters for the exceptions you want to break on.

There's even a way to reconstruct the thrower stack after the exception was caught, but it's really unpleasant. Much, much easier to set a break on the throw.

link|flag
vote up 4 vote down

The default shortcut key is Ctrl-Alt-C.

link|flag
2  
It's important to note that you must be in 'debug' mode to see the call stack window. – dss539 Jun 3 at 16:58

Your Answer

Get an OpenID
or

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