Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In visual studio, is there a way to step back to see what the few lines executed before were? I hit an unhandled exception in my code, and what I would like to do is step back (without re-executing) so I could see the class/method that called the method that threw the exception. This is in C#

share|improve this question
Ahhh Zortec, how we miss thee – Jeff Paquette Nov 17 '09 at 23:29

2 Answers

up vote 16 down vote accepted
Debug -> Windows -> Call Stack (Ctrl + Alt + C is default bindings (I think))

Will show you the history of execution, you can double click events to go to definition, however you cannot step back in code

But you can drag your little yellow arrow to another point in the code to re-execute some code, again this will not change what has already been executed

share|improve this answer
Yep, that's what I was doing, going backwards would have been ideal, but as Breckon suggests, it will be in 2010, which will be good! – Matt Nov 17 '09 at 23:42
   
It will be the best feature added since debuggers have been around IMO. – PostMan Nov 18 '09 at 0:29

VS2010 is supposed to be able to support historical debugging in which you can go backwards as you suggest. http://blogs.msdn.com/ianhu/archive/2009/05/13/historical-debugging-in-visual-studio-team-system-2010.aspx

Unfortunately there is no way to do this in VS2008.

share|improve this answer
1  
This is called "IntelliTrace" and is only available in the Ultimate edition of VS2010. – Stephen Oberauer Aug 28 '12 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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