Go Method

Home Page (Objects)OverviewFAQReference

Applies to: Debugger object

Runs the current program under the debugger.

Syntax

object.Go

Parameters

object

An expression that evaluates to a Debugger object.

Remarks

If the program is already running under the debugger and is in break mode, then the program resumes executing.

If you call the Go method in code for the BreakpointHit event, Developer Studio temporarily defers the call, executes the remaining instructions in the event code, and then executes the Go method when the event exits.

When you call the Go method, it performs asynchronously. This means that Go returns immediately, while the debugger starts or continues the debugging session.

Example

The following example performs the Go method:

Debugger.Go