InterviewSolution
| 1. |
Shortcut Keys For Debugging In Visual Studio? |
|
Answer» Visual Studio Debugging Shortcut Keys: Ctrl-Alt-V: A Displays the Auto window to view the values of VARIABLES currently in the scope of the current line of execution WITHIN the current procedure. Ctrl-Alt-Break: Temporarily stops the execution of all processes in a debugging session. Available only in run mode. Ctrl-Alt-B: Displays the Breakpoints dialog, where you can add and modify breakpoints. Ctrl-Alt-C: Displays the CALL Stack window to display a LIST of all active procedures or stack frames for the current thread of execution. Available only in break mode. Ctrl-Shift-F9: Clears all of the breakpoints in the project. Ctrl-Alt-D: Displays the Disassembly window. Visual Studio Debugging Shortcut Keys: Ctrl-Alt-V: A Displays the Auto window to view the values of variables currently in the scope of the current line of execution within the current procedure. Ctrl-Alt-Break: Temporarily stops the execution of all processes in a debugging session. Available only in run mode. Ctrl-Alt-B: Displays the Breakpoints dialog, where you can add and modify breakpoints. Ctrl-Alt-C: Displays the Call Stack window to display a list of all active procedures or stack frames for the current thread of execution. Available only in break mode. Ctrl-Shift-F9: Clears all of the breakpoints in the project. Ctrl-Alt-D: Displays the Disassembly window. |
|