AoMDdtConverter.Form1.UpdateProcessingLabel C# (CSharp) Method

UpdateProcessingLabel() private method

private UpdateProcessingLabel ( string processing ) : void
processing string
return void
        private void UpdateProcessingLabel(string processing)
        {
            if (this.processingLabel.InvokeRequired)
            {
                this.processingLabel.BeginInvoke(
                    new Action(() =>
                    {
                        this.processingLabel.Text = processing;
                    }
                ));
            }
            else
            {
                this.processingLabel.Text = processing;
            }
        }