How to declare and initialize StringBuilder in VB.NET

1 Answer

0 votes
Imports System
Imports System.Text

Public Class Program
	Public Shared Sub Main()
		Dim sb As New StringBuilder("VB.NET Programming")

        Console.WriteLine(sb)
    End Sub
End Class

  
 
 
  
  
' run:
'
' VB.NET Programming
'

 



answered Oct 27, 2022 by avibootz

Related questions

1 answer 175 views
1 answer 83 views
83 views asked Oct 27, 2022 by avibootz
1 answer 131 views
131 views asked Nov 23, 2020 by avibootz
2 answers 136 views
1 answer 107 views
1 answer 218 views
1 answer 248 views
...