ReSharper(Visual Studio)
The ultimate productivity tool for Visual Studio, elevating C# code refactoring and navigation to the next level
Debug shortcuts that achieve efficient problem-solving and code improvement by integrating error, test, and debugging features
Alt+Enter
Show Quick Fixes and Context Actions
Shows available quick fixes and context actions.
💡 Hint: Alt+Enter = Fix
🎯 Essential for displaying automatic fix suggestions for compilation errors and warnings to quickly resolve issues
Ctrl+Shift+Alt+A
Inspect This
Inspects the current code element.
💡 Hint: Analyze
🎯 Important for executing detailed code analysis to discover potential issues and code quality improvement points
Alt+PageDown
Go to Next Highlight
Goes to the next highlight (error, warning, or suggestion).
💡 Hint: PageDown = Next
🎯 Utilized for sequentially checking error and warning locations to efficiently fix code issues
Alt+PageUp
Go to Previous Highlight
Goes to the previous highlight (error, warning, or suggestion).
💡 Hint: PageUp = Previous
🎯 Used for returning to previous errors or warnings to systematically proceed with correction work
Shift+Alt+PageDown
Go to Next Error or Warning
Goes to the next error or warning.
💡 Hint: Shift+Alt+PageDown = Next error
🎯 Convenient for focusing only on high-priority errors to resolve critical issues first
Ctrl+U → R
Run Unit Tests
Runs unit tests.
💡 Hint: Run
🎯 Important for running tests related to the current context to quickly verify code correctness
Ctrl+U → D
Debug Unit Tests
Runs unit tests in debug mode.
💡 Hint: Debug
🎯 Utilized for running tests in debug mode to investigate test failure causes in detail
Ctrl+Alt+V
Show Inspection Results Window
Shows the Inspection Results window.
💡 Hint: View
🎯 Used for displaying code analysis results in a list to systematically check improvement points for quality enhancement
Ctrl+E → H
View Type Hierarchy
Shows the type hierarchy.
💡 Hint: Hierarchy
🎯 Convenient for visually checking class inheritance relationships to deepen understanding of object-oriented design
Ctrl+Alt+U
Show Unit Test Explorer
Shows the Unit Test Explorer.
💡 Hint: Unit Test Explorer
🎯 Important for comprehensively managing test execution status and results to streamline test-driven development