Insert a string at the beginning of the StringBuilder
Imports System.Text Public Module App Public Sub Main() Dim sb As New StringBuilder("ABC", 50) sb.Insert(0, "Alphabet: ") Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString()) End Sub End Module