Is it possible to the show the previous statement in the method that I'm debugging with Visual Studio 2008?
What I'm currently doing is dragging the yellow arrowhead to the previous statement location or scrolling there and then pressing Ctrl+Shift+F10
But with some large methods the current statement might be quite a few lines upwards and it will really speed-up my debugging if I can press a shotcut key to jump to the previously executed statement.
I can jump to the previous method using the Call Stack Ctrl+Alt+C but how do I jump to the previous statement?
Edit: This might sound like a stupid question if the method is small, I mean, uhmm, the previous executed statement will probably be right above the currently executed statement, but if it is a large method (I know we should refactor those large methods!) then between the current statement and the previously executed statement might be a couple of lines for example switch or if statements etc. So it takea a few seconds (sorry maybe I'm lazy?) to first scroll back and look for the previously executed statement if I for example want to execute that again.
Anyway I think the new Visual Studio 2010 IntelliTrace (Historical Debugger) might have that functionality, so I'll ave a look at that.