Similar Post:
Hidden Features of Visual Studio (2005-2008)?
What are some shortcut keys you know of that make programming faster, easier, or all around more enjoyable?
Similar Post:
Hidden Features of Visual Studio (2005-2008)?
What are some shortcut keys you know of that make programming faster, easier, or all around more enjoyable?
Couple of my favorites.
CTL + TAB -- moves you between open code pages
SHFT + CTL + F -- allows you to do a search across the entire solution (as sometimes find all references does not work when your solutions get huge)
SHFT + DELETE -- allows you to remove an entire line from your code without highlighting it.
One of my favorite items is CTRL + . to add an imports/using statement to the top of the code file.
#region / #endregion
to group your code and allow you to hide the whole region