So I’ve always done it with the plus (+) operator turns out using a prefix $ is much more efficient in terms of memory usage.

//less efficient
string newString = firstString + " said hello";
//more efficient
string newString = $"{firstString} said hello";

Also, don’t forget the StringBuilder class!