JetBrains Rider 2023.3 Help

Debugging

Debugger is an integral part of JetBrains Rider that allows you to examine the runtime behavior of your application, identify problematic code, and isolate the source of the problem step by step.

Typical debugging steps

  1. Define a run/debug configuration for the program that you want to debug.

  2. Set breakpoints in the source code where the potential problem may lie.

  3. Start debugging by launching your program in the debug mode Shift+F9 or attaching to a running process Ctrl+Alt+F5.

  4. When the program execution breaks, step through your code, inspect variables, and evaluate expressions.

  5. You can edit the code of a suspended program and then continue debugging without restarting with Hot Reload.

  6. Resume the debugging session F9 to let the program run to the next breakpoint, if any.

  7. To finish the debugging session, press Ctrl+F2, select Run | Stop in the menu, or click Stop Stop in the Debug window.

The major part of debugging activities takes place in the Debug window, which becomes available once you start debugging. To open this window, press Alt+5 or select View | Tool Windows | Debug in the main menu.

While debugging, you can also perform the most common debugger actions from the Alt+Enter menu. For example Run to Cursor, Skip to Cursor or Toggle breakpoints:

JetBrains Rider: Using Alt+Enter menu while debugging

You may be also interested in the following language- and framework-specific guidelines:

Shortcuts for debugging actions

For the full list of JetBrains Rider keyboard shortcuts, refer to Keyboard shortcuts in predefined keymaps.

Last modified: 18 March 2024