跳过调试点 - visual studio

Skip debug points - visual studio

我有一个 asp.net 应用程序。有时我需要放置很多断点。我知道使用 F5F10F11 在代码行之间导航。如果我想暂时绕过所有断点,但又想保留所有断点以备将来使用,我该怎么做?

使用 Debug->Windows->Breakpoints window,您可以禁用(通过使用复选框)或删除 any/all 个断点 from there. You may also configure custom VS shortcut for this VS 2012 Add Shortcuts for "Disable all breakpoints" and "Enable all breakpoints"?.

或者,如果您使用本地 IIS,您可以 运行 没有附加调试器的应用程序,然后如果您想开始调试,请使用 Debug->Attach to,select w3p.exe 并开始调试(我经常使用这个设置)。