Visual Studio Shortcuts
It may sound a little overemphasizing but shortcut keys save time, the millisecond of time that it takes to move our hands, from the keyboard to the mouse, actually adds up over the day. Using shortcuts is the key to working efficiently in our programming environment. Visual Studio has excellent support for utilizing the keyboard. Here are a few standard shortcuts that can boost our productivity: 1. Inserting code snippet S nippets are a useful feature in the Visual Studio IDE. With them, you can type a few letters and then press tab twice to insert a code fragment. For example to insert a constructor you type ctor and press tab twice. A related feature is "Surround With" for which keyboard shortcut is Cntrl+K+S. Here is the complete list of all code snippe t: https://msrmicrosoft.com/en-us/library/z41h7fat.aspx 2. Remove unused using: Keyboard shortcut is Shift + F10+ O+R Some of the advantages of removing...