Start
| Resets execution to the first line of the program
|
Go
| Starts or continues execution from the current location
|
Step Into
| Single-steps one line through the program, entering functions when they are encountered
|
Step Over
| Single-steps one line through the program, not entering functions
|
Step Out
| Runs to the first instruction after the call to the current function
|
Interrupt
| Stops the running process
|
Set Breakpoints
| Opens the <xref BreakpointsWindow>, where you can set, clear, and list breakpoints and tracepoints
|
Show Stopped Location
| Redisplays the line in the editor where the program stopped
|
Fix Changes
| Recompiles all changed files and continues debugging
|
Terminate Process
| Kills the process
|
Detach Process
| Detaches the process so that it runs independent of the debugger
|