Kill() public method

public Kill ( ) : void
return void
Ejemplo n.º 1
0
        public void Stop()
        {
            if (!running)
            {
                throw new Exception("Start the instance before stopping");
            }

            // System is not running anymore
            running = false;

            isimProcess.Kill();

            CleanSimulation();
        }