How to disable exception assistant and unhandled exception popup in Visual Studio 2008 Express

前端 未结 2 442
难免孤独
难免孤独 2021-01-11 17:06

I am using Visual Studio 2008 Express and am writing unit tests where there are many expected unhandled exceptions. This cause numerous exception assistant popups to display

2条回答
  •  甜味超标
    2021-01-11 17:59

    In the Debug menu, go to Exceptions (Ctrl+Alt+E). From here you can tell the debugger not to break when an exception is thrown. Just uncheck all the boxes for the lazy option, or go digging for the specific exceptions you don't want it to break on.

    Note however, that this may not be what you want to happen under normal debugging situations, so don't forget to turn it back on later if you're trying to debug something & want to find the exception.

    Edit: My apologies, even though it's written several times in the question (including the title), I failed to notice you were talking about the express edition... teach me for skim reading the question. Not sure if the above works or not in express edition, so it might still be worth a try.

    Edit 2: Ok, looks like the Exceptions dialog is still available in express edition.

提交回复
热议问题