How do I find the stack trace in Visual Studio?
While debugging, Go to Debug -> Windows -> Call Stack
While debugging, when you hit a break-point.
CTRL+ALT+C
The default shortcut key is Ctrl-Alt-C.
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.