News

Join strings using String.Join vs. StringBuilder.AppendJoin in C#. When you’re joining strings, use StringBuilder.AppendJoin in lieu of String.Join for reduced allocations.
Thus you should use the StringBuilder.AppendJoin method in lieu of String.Join when concatenating strings to reduce allocations and improve performance.