Mono.Debugger.GUIManager.Continue C# (CSharp) 메소드

Continue() 공개 메소드

public Continue ( Thread thread ) : void
thread Thread
리턴 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);
     });
 }