I know that the System.Text.StringBuilder in .NET has an AppendLine() method, however, I need to pre-append a line to the beginning of a StringBu
System.Text.StringBuilder
AppendLine()
StringBu
You can use AppendFormat to add a new line where ever you like.
Dim sb As New StringBuilder() sb.AppendFormat("{0}Foo Bacon", Environment.NewLine)