Kill() public méthode

public Kill ( ) : void
Résultat void
Exemple #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();
        }