Visual Studio Hotkeys

Complete list here

General

Hotkey Description
Ctrl + K, D Format document
Ctrl + K, C Comment selection
Ctrl + K, U Uncomment selection
Ctrl + M, O Collapse All
Ctrl + M, S Collapse Selection
Ctrl + M, M Expand/Collapse on cursor location
F12 Go to Definintion
Shift + F12 Find all References
Ctrl + D Duplicate current line
Alt + ↑/↓ Move selection up/down
Ctrl + Tab Go to next open file
Ctrl + Shift + Tab Go to previous open file


Debugging

Hotkey Description
Ctrl + Shift + B Build Solution
Ctrl + Break Cancel Build
F5 Start Debugging session (if not running) / Continue (if debugger is stopped at line)
Shift + F5 Stop Debugging session (only when running with Debugging)
Ctrl + Shift + F5 Restart Debugging Session (only when running with Debugging)
F9 Add/Remove Breakpoint
Shift + F9 Enable/Disable Breakpoint
F10 Step Over (underying line of code is executed and debugger pointer moves to next line)
F11 Step Into (if underying line of code is a method, pointer moves to its first line)
F11 + F11 Step Out (executes all statements in currently pointed to method and returns back to the line method was called)


Refactoring

Hotkey Description
Ctrl + R, R Rename (all instances)
Ctrl + R, M Extract Method (extracts selection to new method)


ReSharper Hotkeys

Complete list here

General

Hotkey Description
Ctrl + W Extend selection
Ctrl + Shift + W Shrink selection
Ctrl + R, S Change Signature
Ctrl + T, T optionally, add a one of the following and space (" ") to filter:
: for Line Number (of current file)
f for Files
r for Recent Files
t for Types
m for Members
# for Symbols
Navigate to