Here’s a list of Visual Studio shortcuts I use quite often.
| F12 | Go to declaration |
| F10 | Debug: Step over |
| Control + F10 | Debug: Run to cursor |
| Control + - | Move to previous edit point |
| Control + Shift + - | Move to next edit point |
| Control + K, Control + M | Create method stub when you call a method which does not exist yet |
| Control + . | Same as above, but opens menu |
| Shift + Alt + Enter | Full Screen mode |
| Control + M, Control + M | Collapse current code block / region |
| Control + M, Control + O | Collapse all methods |
| Control + M, Control + P | Expands all method blocks |
| Control + ] | Move to matching brace |
| Control + Shift + V | Cycle through clipboard |
There are a lot of sites with a lot more shortcuts as well as thorough descriptions (dofactory.com), the few listed above is meant as a personal reminder for my most frequent used shortcuts.