Air_Hockey_Simulator.MicroTimer.Abort C# (CSharp) Method

Abort() public method

public Abort ( ) : void
return void
        public void Abort()
        {
            _stopTimer = true;

            if (Enabled) {
                _threadTimer.Abort();
            }
        }