How to continue execution after an unhandled exception in Visual Studio 2017?
In version 2015 and below, this was easy to do by clicking Enable Editing , which "unwinds the column to the point before the exception." Then it was possible to edit the execution point, variables and code.
This option disappeared when the library throws an exception:

"".Substring(1);
If an exception occurs in the user code, it still works:

int x = 0; Console.WriteLine(1 / x);
Note the yellow arrow that you can drag.
I really hope that this function has not been removed, because the utility of the failed program (here, for example, when setting x = 1 , changing the string constant or skipping the problematic string) is what I do a lot. Now I have a many-hour operation, 99% completed in this state, and I really would like to save it by suppressing a minor error.
This is Visual Studio 2017 build 26228 on .NET 4.6.1.
source share