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

StepOut() public method

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

Usage Example

Example #1
0
 public void Finish()
 {
     if (running)
     {
         throw new InvalidOperationException("Target already running");
     }
     OnStartRunning();
     guiManager.StepOut(activeThread);
 }