01-Navigation/1-Navigate_to_something_you_know/1.7-View_breakpoints.cs (12 lines of code) (raw):
namespace JetBrains.ReSharper.Koans.Navigation
{
// View Breakpoints
//
// Navigate to breakpoints in solution.
//
// <shortcut id="View Breakpoints...">Ctrl+Alt+B</shortcut>
public class ViewBreakpoints
{
public void Foo()
{
// 1. Place a breakpoint at the start of this method
}
public void Bar()
{
// 2. Place a breakpoint at the start of this method
}
// 3. Go to Breakpoint
// Use the keyboard shortcut <shortcut id="View Breakpoints...">Ctrl+Alt+B</shortcut>
// See that both of the breakpoints we created are listed, hit enter to navigate.
}
}