예제 #1
0
 public void Continue()
 {
     if (_debugServer.InDebug)
     {
         _debugServer.Continue();
     }
 }
예제 #2
0
 private void EventsOnDebugLeave()
 {
     if (_state == State.Continue)
     {
         _server.Continue();
     }
     else if (_state == State.Step)
     {
         _server.Step();
     }
 }
예제 #3
0
파일: Program.cs 프로젝트: MRazvan/ASAVRSD
 private static void Continue(CommandLine cmd)
 {
     _srv.Continue();
 }