

To achieve clean code, it is often useful to listen to the warnings of your IDE. To step through your code after hitting a breakpoint, use F11. Debugging Shortcuts (F5, F11)įor debugging purposes, it may come in handy, to start debugging with F5.

If you have an interface implemented and want to navigate to the class definition directly, use CTRL+F12. This will navigate to the interface definition if an interface was used, otherwise, it will jump to the class definition. This is also one of my most used shortcuts! When you are referencing other classes or interfaces in your code and want to check out their definition, simply use F12 to go to the definition. Comment out Navigate to definition or implementation (F12, CTRL+F12)
