Teoman shipahi
Teoman shipahi

Reputation: 23102

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?

Upvotes: 45

Views: 23149

Answers (4)

Yet another way: First open the Command Window using the menu View > Other Windows > Command Window or just press Ctrl + Alt + A. Then type and press Enter

> bl

or

> Debug.Breakpoints

in the Command Window as in the image.

enter image description here

Upvotes: 0

searcher
searcher

Reputation: 51

In Visual Studio 2013 I see the shortcut Ctrl + D + B.

Upvotes: 0

Anson
Anson

Reputation: 479

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

Upvotes: 46

RobZ
RobZ

Reputation: 647

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

Upvotes: 63

Related Questions