public void Step() { if (_debugServer.InDebug) { _debugServer.Step(); } }
private void EventsOnDebugLeave() { if (_state == State.Continue) { _server.Continue(); } else if (_state == State.Step) { _server.Step(); } }