Hacker News new | ask | show | jobs
by Merad 2601 days ago
Visual Studio's debugger is especially magical with .NET. With the debugger paused on a breakpoint you can drag the "next statement" pointer backwards to rerun pieces of your code. You can also edit the code while paused and your changes will be reloaded on the fly when you continue execution.
1 comments

> you can drag the "next statement" pointer backwards to rerun pieces of your code.

Works also in C++, though not very well when the debugger stops on an exception.