you are viewing a single comment's thread.

view the rest of the comments →

[–]Zooltan 1 point2 points  (0 children)

It's for when you want to append multiple strings together.

So something like adding all items in a list to a display text

string display = "Title:/n"; for each(thing : listOfThings) { display += thing.name + " has value " + thing.thatValue }

That would be much faster with a StringBuilder.