Patcher.UI.Progress.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            stopwatch.Stop();
            Log.Fine("{0} finished in {1} ms", Title, stopwatch.ElapsedMilliseconds);

            EventHandler temp = Disposed;
            if (temp != null)
            {
                temp(this, EventArgs.Empty);
            }
        }