Debugger.Go(Boolean) Method

Definition

Starts executing the program from the current statement.

void Go(bool WaitForBreakOrEnd = true);
[System.Runtime.InteropServices.DispId(6)]
public void Go (bool WaitForBreakOrEnd = true);
[<System.Runtime.InteropServices.DispId(6)>]
abstract member Go : bool -> unit
Public Sub Go (Optional WaitForBreakOrEnd As Boolean = true)

Parameters

WaitForBreakOrEnd
Boolean

Set to true if this function call should wait until either Break mode or Design mode is entered before returning. Set to false if you want this call to return immediately after causing the debugger to begin execution. Upon return, the debugger could be in Design, Break, or Run modes. See Execution Control for more information.

Attributes

Examples

The following example demonstrates how to use the Go method.

public static void Go(DTE dte)  
{  
    dte.Debugger.Go(true);  
}  
Shared Sub Go(ByRef dte As EnvDTE.DTE)  
    dte.Debugger.Go(True)  
End Sub  

Remarks

Go starts executing the program from the current statement. See Starting Execution for more information.

Applies to