Continuing in the Visual Studio debugger after an exception occurs

前端 未结 5 1211
星月不相逢
星月不相逢 2020-12-03 06:32

When I debug a C# program and I get an exception throwed (either thrown by code OR thrown by the framework), the IDE stops and get me to the corresponding line in my code.

5条回答
  •  温柔的废话
    2020-12-03 06:52

    An uncaught exception will bring down your app. Instead of this, VS will just keep you at the uncaught exception, You will have to terminate or backwind your app.

提交回复
热议问题