ARCed.Controls.HighPrecisionTimer.Dispose C# (CSharp) Method

Dispose() public method

Frees timer resources.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            #region Guard

            if (this.disposed)
            {
                return;
            }

            #endregion

            if (this.IsRunning)
            {
                this.Stop();
            }

            this.disposed = true;

            this.OnDisposed(EventArgs.Empty);
        }