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?
Asked
Active
Viewed 8.5k times
7 Answers
431
Try Debug -> Windows -> Breakpoints.

Martin Liversage
- 104,481
- 22
- 209
- 256
-
6This is not available in Visual C# 2010 Express. – AdamAL Jul 30 '14 at 13:10
-
10Yep, 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.
– Minok Mar 12 '19 at 23:17
37
Default Shortcuts:
To open the break point window: Ctrl+D, B
If you wanted to delete all breakpoints: Ctrl+F9

char1es
- 383
- 3
- 18

Tarun Arora
- 4,692
- 4
- 30
- 40
-
14
-
7Ctrl+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. – Mike_OBrien Dec 27 '12 at 21:13
-
1The 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 – Al Lelopath Mar 16 '17 at 17:37
-
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. – Malcolm May 07 '19 at 16:16
20
9
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

Bengi Besçeli
- 3,638
- 12
- 53
- 87
2
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.

Mwiza
- 7,780
- 3
- 46
- 42
-2
To open the Breakpoints Window
On the Debug menu, point to Windows and then choose Breakpoints.

Ryder
- 514
- 1
- 7
- 27
-
10Why add an answer that is exactly the same as the accepted answer from nearly 2 years prior? – Th4t Guy Apr 22 '14 at 23:57