Concatenating multiple string literals or strings using the +
operator creates a new string object for each concatenation. This can
lead to a large number of intermediate string objects and can be inefficient. The StringBuilder
class is more efficient than string
concatenation, especially when the operator is repeated over and over as in loops.