visual-studio 清除 Visual Studio 解决方案中的所有断点
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/4211234/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Clear all breakpoints in a Visual Studio solution
提问by lomaxx
Is there a shortcut to clear all breakpoints within all projects within a solution in Visual Studio?
是否有清除 Visual Studio 解决方案中所有项目中所有断点的快捷方式?
回答by RPM1984
Debug > Delete All Breakpoints
调试 > 删除所有断点
or
或者
Shortcut: CTRL+ SHIFT+ F9
快捷方式:CTRL+ SHIFT+F9
This works in Debug modeas well.
这也适用于调试模式。
回答by BeemerGuy
I personally find it easier to hold ALT, and double-press D.
Which translates to Debug menu, Delete All Breakpoints.
我个人觉得更容易按住ALT,然后双击按D.
它转换为debug菜单,delete所有断点。

