TextBox.Text += "string"; vs TextBox.AppendText("string");

Viewed 23840

what is the difference between these two methods?

Is one more efficient than the other?

I was thinking maybe the AppendText() uses a method similar to the StringBuilder, ie it uses its own cache instead of creating and appending a new string each time, is that true?

Thanks.

3 Answers
Related