Editing | |
Ctrl + Space | Basic code completion (the name of any symbol or keyword) |
Ctrl + Shft + Space | Smart code completion (filters the list of symbols by expected type) |
Ctrl + Alt + Space | Type name completion (the name of any type independently of using directives) |
Ctrl + P | Show parameters and documentation summary (within method call arguments) |
Alt + Insert | Generate code (Constructors, Properties Override/Implement Members) |
Ctrl+ Shft + Alt + Up/Down | Move type member up/down |
Alt + Enter | Show available quick-fixes |
Ctrl + W | Extend selection block by block |
Ctrl + Shft + W | Shrink selection block by block |
Ctrl + D | Duplicate line/selection |
Ctrl + / | Comment/uncomment with line comment |
Ctrl + Shft +/ | Comment/uncomment with block comment |
Ctrl + Alt + F | Reformat code |
Ctrl + Alt + O | Optimize using directives |
Ctrl + Q | Quick documentation popup |
Ctrl + Shft + V | Paste (clipboard popup) |
Usage Search | |
Alt + F7 | Find Usages |
Shft + Alt + F7 | Find Usages Advanced |
Ctrl + Shft + F7 | Highlight Usages in file |
Ctrl + Alt + U | Find Results Window |
Ctrl + Alt + F7 | Go to usage |
Ctrl + Alt + Up/Down | Go to next/previous usage |
Goto | |
Ctrl + N | Type by name |
Ctrl + Shft + N | File by name |
Ctrl + B | Declaration |
Ctrl + Shft + T | Type declaration |
Ctrl + U | Base |
Ctrl + Alt + B | Inheritor |
Alt + Up/Down | Next/previous method |
Fl 2/ Shft + Fl 2 | Next/previous error |
Ctrl + Shft + Backspace | Last edit location |
Navigation Views | |
Ctrl + F12 | File Structure Popup |
Ctrl + E | Recent Files |
Ctrl + Alt + H | Type Hierarchy |
Ctrl + Shft + E | Explore Stack Trace |
Ctrl + Shft + F4 | Close tab/view |
Refactoring | |
Ctrl + Shft + R | Refactor This (select from list of applicable refactorings) |
F2 or Shft + F6 | Rename |
F6 | Move |
Ctrl + F6 | Change signature |
Ctrl + Alt + M | Extract method |
Ctrl + Alt + V | Introduce variable |
Ctrl + Alt + D | Introduce field |
Ctrl + Alt + P | Introduce parameter |
Ctrl + Alt + N | Inline variable |
Templates | |
Ctrl + J | Insert Live Template (select from list) |
Tab | Expand Live Template after abbreviation |
Ctrl + Alt + J | Surround With Template (if, try..catch #region, etc) |
Iteration Live Templates | |
foreach | foreach block |
ital | iterate an Arraylist |
itar | Iterate an array |
itd | Iterate a Dictionary<K,V> |
itdic | Iterate a Dictionary |
itli | Iterate an Ilist <T> |
ritar | Iterate an array in reverse order |
loop | Simple for loop |
Other Live Templates | |
asrt | Make an assertion |
ear | Empty array |
out | Print a string |
outv | Print value of a variable |
pci | public const int |
pcs | public const string |
psr | public static readonly |
psvm | main() method declaration |
sfc | Safely cast a variable |
thr | throw new |
toar | Convert an ArrayLIst to array |
comments powered by Disqus