namespace JetBrains.ReSharper.Koans.Navigation
{
// View Breakpoints
//
// Navigate to breakpoints in solution.
//
// Ctrl+Alt+B
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 Ctrl+Alt+B
// See that both of the breakpoints we created are listed, hit enter to navigate.
}
}