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