Friday, July 14, 2017

Visual Studio 2017 keyboard shortcuts


Go to all: ctrl + T
Ctrl+M, Ctrl+O : collapse to definitions. I use it all the time together with #regions

"View White Space" option and use CTRL+R/CTRL+W 

Copy path including file : shift key + right click -->copy as path

Ctrl+F6 to cycle through the currently open documents

Alt+shift+.(dot) for all ocurance of a string

Open commmand prompt in windows 10

  1. open a specific location
  2. press Alt + D
  3. Type cmd
  4. press Enter

No comments:

Post a Comment

Encrypt/Decrypt the App.Config

Program.cs using System; using System.Diagnostics; using System.IO; namespace EncryptAppConfig {     internal class Program     {         pr...