pocorall.SCM_Notifier.MainForm.EndUpdateListView C# (CSharp) Method

EndUpdateListView() private method

private EndUpdateListView ( ) : void
return void
        private void EndUpdateListView()
        {
            statusStrip.Items[0].Text = null;

            // Reduce used memory
            GC.Collect();
            EmptyWorkingSet (currentProcessHandle);

            if (!pauseTimer.Enabled)
            {
                // If the pauseTimer is running it will start up
                // the statusUpdateTimer once the pause is done.
                StartTimer();
            }
        }
MainForm