A recent question came up about using String.Format(). Part of my answer included a suggestion to use StringBuilder.AppendLine(string.Format(...)). Jon Skeet suggested this was
I prefer this structure:
sbuilder.AppendFormat("{0} line\n", "First");
Though admittedly there is something to be said for separating out the line breaks.