Dim sb as new system.text.str ingbuilder
sb.append("foo" )
sb = new system.text.str ingbuilder
sb.append("bar" )
? sb.tostring
bar
There is also the Remove method.
HTH,
Greg
"ESPN Lover" <espn@lover.com > wrote in message
news:eVoF$lLsEH A.3572@tk2msftn gp13.phx.gbl...[color=blue]
> I've got stuff in my StringBuilder (System.Text) and I need to clear it
> all
> out. How do I do that?
>
>[/color]
"Greg Burns" <greg_burns@DON T_SPAM_ME_hotma il.com> wrote in message
news:uG0qkpLsEH A.3412@TK2MSFTN GP14.phx.gbl...[color=blue]
> Dim sb as new system.text.str ingbuilder
> sb.append("foo" )
> sb = new system.text.str ingbuilder
> sb.append("bar" )
>
> ? sb.tostring
> bar
>
> There is also the Remove method.[/color]
Comment