Strings are immutable, meaning, once they have been created they cannot be changed.
So, does this mean that it would take more memory if you append things with += th
Yes. String is immutable. For occasional use, += is OK. If the += operation is intensive, you should turn to StringBuilder.