Append Integer data type values to a StringBuilder object.
Imports System.Text
Class Sample
Public Shared Sub Main()
Dim sb As New StringBuilder()
Dim xInt32 As Integer = 3
sb = sb.Append(xInt32)
Dim str As [String] = sb.ToString()
Console.WriteLine("The appended string is:")
Console.WriteLine(str)
End Sub
End Class