Betzalel.SimpleMulticastAnalyzer.Infrastructure.HighResolutionTimer.Dispose C# (CSharp) Method

Dispose() public method

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

              if (disposed)
              {
            return;
              }

              #endregion

              if (IsRunning)
              {
            Stop();
              }

              disposed = true;

              OnDisposed(EventArgs.Empty);
        }