Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I see all breakpoints in Visual Studio 2013?

I can toggle breakpoints for any line, but I could not see the list of all breakpoints (Breakpoints window).

When I go menu DebugWindows → ... It does not show me Breakpoints window.

Am I missing something?

like image 770
Teoman shipahi Avatar asked Jul 12 '13 14:07

Teoman shipahi


People also ask

How do you show breakpoints?

You can see these breakpoints with the GDB maintenance command `maint info breakpoints' . Using the same format as `info breakpoints' , display both the breakpoints you've set explicitly, and those GDB is using for internal purposes. Internal breakpoints are shown with negative breakpoint numbers.

How do I remove all breakpoints in Visual Studio?

To clear all breakpoints in the applicationFrom the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).

How do I add a breakpoint to all methods in Visual Studio?

Press F3 and then press F9 to add a breakpoint.


2 Answers

Simply use the keyboard shortcut Ctrl + Alt + B, which should show you the breakpoints window.

like image 104
RobZ Avatar answered Sep 20 '22 02:09

RobZ


You can select from top menu bar: Debug -> Windows -> Breakpoints

like image 26
Anson Avatar answered Sep 21 '22 02:09

Anson