Mega Code Archive
Insert xInt32 to StringBuilder
Imports System
Imports System.Text
Class Sample
Public Shared Sub Main()
Dim sb As StringBuilder
sb = new StringBuilder
sb.Append("1234")
Dim xInt32 As Integer = 3
sb.Insert(3, xInt32, 2)
Console.WriteLine(sb.ToString())
End Sub
End Class