'Declare the StringBuilder variable
Private body As New System.Text.StringBuilder("")
'Append the string into the StringBuilder
body.Append("Hello world!!
")
body.Append("Hi!!
")
'Retrieve the value of the StringBuilder
body.toString
OUTPUT:
Hello world!!
Hi!!
Cool right? StringBuilder is much recommended than using the usual concatination symbols like + and &.
This marks the end of a chapter...
-
KagoJen is no longer in Kago
so now I'm just plain ol' GaijinJen
Yep, that's why from now on,
I will be blogging on GaijinJen instead
15 years ago