Ejemplo n.º 1
0
 public void Step()
 {
     if (_debugServer.InDebug)
     {
         _debugServer.Step();
     }
 }
Ejemplo n.º 2
0
 private void EventsOnDebugLeave()
 {
     if (_state == State.Continue)
     {
         _server.Continue();
     }
     else if (_state == State.Step)
     {
         _server.Step();
     }
 }