AoMDdtConverter.Form1.UpdateProcessingLabel C# (CSharp) 메소드

UpdateProcessingLabel() 개인적인 메소드

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