Lots of time, when we add text to a multi-line textbox in Windows Forms application, we simply use TextBox.Text += to do the job. However, if you are continuously appending text to the current content, you should use TextBox.AppendText(). There is big performance hit with the TextBox.Text +=. Similar to…