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

StepInto() public method

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

Usage Example

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