Using StringBuilder
is seen as hugely preferable to building up strings with multiple repeated concatenations with
a +
or +=
operator. Obviously simple one off concatenations are preferable
to instantiating a StringBuilder
for clarity as well as performance. This is what Jon Skeet has to say about performance.