Display the number of characters in the StringBuilder and its string
Imports System.Text Public Module App Public Sub Main() Dim sb As New StringBuilder("ABC", 50) Console.WriteLine("{0} chars: {1}", sb.Length, sb.ToString()) End Sub End Module