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 188 views
1 answer 96 views
96 views asked Oct 27, 2022 by avibootz
1 answer 138 views
138 views asked Nov 23, 2020 by avibootz
2 answers 148 views
1 answer 120 views
1 answer 231 views
1 answer 266 views
...