Emul8.Peripherals.CPU.TranslationCPU.StopGdbServer C# (CSharp) 메소드

StopGdbServer() 공개 메소드

public StopGdbServer ( ) : void
리턴 void
        public void StopGdbServer()
        {
            if(!IsGdbServerCreated)
            {
                return;
            }

            stub.Dispose();
            stub = null;
        }
TranslationCPU