This is because the exception is not handled, and Visual Studio cannot move along this line without processing it in any way. Simply put, this is by design.
One thing you can do is drag the execution point (yellow line / arrow) to the previous point in the code and change the values ββin memory (using the Visual Studio viewport) so that they don't throw an exception. Then go through code 1 again.
It is best to stop execution and fix the problem causing the exception, or handle the exception correctly if the throw is not needed.
1 This can have unintended consequences, as you essentially re-execute some code (without rewinding the execution).
Eric Schoonover Oct 02 '08 at 20:41 2008-10-02 20:41
source share