Command Visual Studio Commands

Command Through the Menus Shortcut Key
Build (Compile) the Project Build --> Build&ngsp;Solution F6
Run the Program without Debugging Debug --> Start without Debugging Ctrl+F5
Run with Debugging Degug --> Start Debugging F5
Set a Breakpoint Click in the gray column to left of code
Unset a Breakpoint Click the red dot to left of the code
See Value of a Variable Click in the code window and hover mouse over variable name
Put a Watch on a Variable Debug --> QuickWatch Ctrl+D Q
Execute One Statement Debug --> Step Over F10
Step Into a Function Call Debug --> Step Into F11
Run to Next Breakpoint Debug --> Continue F5