Whether you are new or have been using Visual Studio for years, there are a bunch of tips and tricks that can make you more productive. We’ve been sharing tips on Twitter using the
hashtag #vstip for a while, and this is a collection of the best ones so far.
Debugger
Hitting F10 to build, run, and attach debugger instead of F5 will automatically break on the first time your own code is being executed. No breakpoints needed.
Supported from Visual Studio 2005
Reattach to process (Shift+Alt+P) is extremely helpful when you have to attach to the same process again and again.
Supported from Visual Studio 2017 v15.8
A blue dot in the margin indicates a switch of threads while stepping through debugging.
Supported from Visual Studio 2013