Debug Menu
- Start Debugging - initiate a debugging session and run the program.
- Continue - resume a debugging session that has been halted.
- Connect - connect the Debugger to an already running process.
- Finish Debugging - end the current debugging session.
- Suspend All - Suspend all threads in the Debugger.
- Trace Into - trace into the method the debugger has halted at.
- Go To Cursor - execute the current statement and all ensuing statements until it reaches the line that the insertion point is on.
- Trace Over - trace over the method the debugger has halted at.
- Step Out - halt execution after the current method finishes and control passes to the caller.
- Add/Remove Breakpoint - switch a breakpoint on or off at the current line. The line will be highlighted in blue when a breakpoint is set.
- New Breakpoint - add a new breakpoint. A dialog will appear prompting you to type where it should it be set.
- Add Watch... - watch a variable.
- Debugger Window - open the Debugger Window.
- Resume All - Resume debugging of all threads in the Debugger.
Contents | Prev | Next | Index |