Append three characters (D, E, and F) to the end of the StringBuilder
Imports System.Text
Public Module App
Public Sub Main()
Dim sb As New StringBuilder("ABC", 50)
sb.Append(New Char() {"D"c, "E"c, "F"c})
Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString())
End Sub
End Module