Choreoh.MainWindow.UpdateText C# (CSharp) 메소드

UpdateText() 개인적인 메소드

private UpdateText ( string newText ) : void
newText string
리턴 void
        private void UpdateText(string newText)
        {
            Dispatcher.BeginInvoke(new Action(() => { commentBox.Text = commentBox.Text + " " + newText; }), DispatcherPriority.Normal);
        }