Rider
A cross-platform IDE specialized for .NET and game development, innovatively supporting Unity development and C# projects
Debug shortcuts for efficiently identifying and fixing .NET application bugs with breakpoint setting and step execution
F9
Toggle Breakpoint
Sets/removes breakpoint at current line.
💡 Hint: F9 = Breakpoint
🎯 Quickly set breakpoints to stop execution at problematic code lines
F5
Start/Continue Debugging
Starts or continues debugging.
💡 Hint: F5 = Go
🎯 Start application in debug mode to begin bug investigation
F10
Step Over
Executes current line and moves to next.
💡 Hint: F10 = Step over
🎯 Execute current line and advance to next without entering methods
F11
Step Into
Steps into method.
💡 Hint: F11 = Step in
🎯 Step into methods to trace detailed processing flow
Shift+F11
Step Out
Steps out of current method.
💡 Hint: Shift + F11 = Step out
🎯 Step out of current method and return to caller
Ctrl+F10
Run to Cursor
Runs to cursor position.
💡 Hint: Ctrl + F10 = Run to
🎯 Run to cursor position at once to reduce debugging time
Shift+F5
Stop Debugging
Stops debugging.
💡 Hint: Shift + F5 = Stop
🎯 End debug session and return to normal development work
Ctrl+Alt+P
Attach to Process
Attaches debugger to running process.
💡 Hint: Alt + Process
🎯 Attach debugger to running process to investigate production issues