242

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?

p.campbell
  • 98,673
  • 67
  • 256
  • 322
user4951
  • 32,206
  • 53
  • 172
  • 282

7 Answers7

431

Try Debug -> Windows -> Breakpoints.

Martin Liversage
  • 104,481
  • 22
  • 209
  • 256
  • 6
    This is not available in Visual C# 2010 Express. – AdamAL Jul 30 '14 at 13:10
  • 10
    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. – 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
    Ctrl+Alt+B by default here. (Possibly due to ReSharper though) – RJFalconer Sep 04 '12 at 09:29
  • 7
    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. – Mike_OBrien Dec 27 '12 at 21:13
  • 1
    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 – 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

Ctrl+Alt+B in Visual Studio 2010.

Mwiza
  • 7,780
  • 3
  • 46
  • 42
hima
  • 610
  • 3
  • 10
  • 24
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
Tools> Settings> Expert Settings 
Echilon
  • 10,064
  • 33
  • 131
  • 217
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