VSNDK.DebugEngine.AD7ProgramNodeAttach.Continue C# (CSharp) Method

Continue() public method

Continues running this program from a stopped state. Any previous execution state (such as a step) is preserved, and the program starts executing again. (http://msdn.microsoft.com/en-us/library/bb162148.aspx). Not implemented because this class is not used by the debug engine. Read the description of this class at the top.
public Continue ( IDebugThread2 pThread ) : int
pThread IDebugThread2 An IDebugThread2 object that represents the thread.
return int
        public int Continue(IDebugThread2 pThread)
        {
            // This method is not called by the debug engine.
            return VSConstants.S_OK;
        }