ChatGPT解决这个技术问题 Extra ChatGPT

See all breakpoints in Visual Studio 2010+

Is there a window in Visual Studio 2010 and newer where I can see all the breakpoints that I have in my project or solution?


M
Martin Liversage

Try Debug -> Windows -> Breakpoints.


This is not available in Visual C# 2010 Express.
Yep, because putting it under a consistent entry like : "View-> Breakpoints Window" is just too consistent of a user interface design, so Microsoft cannot implement it that way. Every couple of years when I have to reinstall VS2010 due to a computer refresh I need to look this up again.
c
char1es

Default Shortcuts:

To open the break point window: Ctrl+D, B

If you wanted to delete all breakpoints: Ctrl+F9


Ctrl+Alt+B by default here. (Possibly due to ReSharper though)
Ctrl+Alt+B worked for me as well and I have no add ons running. Ctrl+D, B brought up the breakpoint interface for adding a new breakpoint at the current cursor location.
The comment by @Mike_OBrien works for Visual Studio 2015 and should be an answer, not a comment, or perhaps added on to the answer by MartinLiversage
In Visual Studio 2017, Ctrl+D duplicates the current selection and Ctrl+B adds a new breakpoint at the current line. Ctrl+F9 does nothing.
M
Mwiza

Ctrl+Alt+B in Visual Studio 2010.


Also in VS 2019
B
Bengi Besçeli

Breakpoints window is not included in some Express versions of Visual Studio.
Its included in Pro, Premium, and Ultimate. Here is the manual for the versions : http://msdn.microsoft.com/en-us/library/02ckd1z7%28v=VS.100%29.aspx


E
Echilon
Tools> Settings> Expert Settings 

I needed this because I am using express.
M
Mwiza

C# Express 2010 does not include the command CTRL + ALT + B; The options Tools> Settings> Expert Settings work only if you need more options, but for view all the break points are not incluyed.


R
Ryder

To open the Breakpoints Window

On the Debug menu, point to Windows and then choose Breakpoints.


Why add an answer that is exactly the same as the accepted answer from nearly 2 years prior?