I am writing a log of lots and lots of formatted text to a textbox in a .net windows form app.
It is slow once the data gets over a few megs. Since I am appending th
Build your String together with a StringBuilder, then convert it to a String using toString(), and assign this to the textbox.
StringBuilder
toString()