I use VB StringBuilder and I was curious what is considered “best practice” to empty the linker / set it to a new line. It would be like this:
Dim str As New System.Text.StringBuilder() str.Append("Some string to remove") str = new System.Text.StringBuilder() str.Append("Ahh, fresh new text!")
or is there a "better" way?
thanks
source share