Mono.Debugger.GUIManager.Continue C# (CSharp) Method

Continue() public method

public Continue ( Thread thread ) : void
thread Thread
return void
        public void Continue(Thread thread)
        {
            thread.Step (ThreadingModel, StepMode.Run);
        }

Usage Example

示例#1
0
 public void Continue()
 {
     if (running)
     {
         throw new InvalidOperationException("Target already running");
     }
     OnStartRunning();
     QueueTask(delegate {
         guiManager.Continue(activeThread);
     });
 }