Append a format string to the end of the StringBuilder
Imports System.Text
Public Module App
Public Sub Main()
Dim sb As New StringBuilder("ABC", 50)
sb.AppendFormat("GHI{0}{1}", "J"c, "k"c)
Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString())
End Sub
End Module