E ESPN Lover Oct 13, 2004 #1 I've got stuff in my StringBuilder (System.Text) and I need to clear it all out. How do I do that?
G Greg Burns Oct 13, 2004 #2 Dim sb as new system.text.stringbuilder sb.append("foo") sb = new system.text.stringbuilder sb.append("bar") ? sb.tostring bar There is also the Remove method. HTH, Greg
Dim sb as new system.text.stringbuilder sb.append("foo") sb = new system.text.stringbuilder sb.append("bar") ? sb.tostring bar There is also the Remove method. HTH, Greg