Which would work better StringBuilder or String
I am creating a text file\report in which I build a string based on dataset fields and then write it out. But it seems like it would be a slow process to clear the string builder each time I write it out and then fill it with 100 spaces again before being able to use it again.
I am converting a foxpro prgram that create a text file to be used for printing checks. So I have to create the code for grouping and making sure the check print on the bottom of the page. Seeing as I can write code similar to this.
Text.write(Field1) at position 26 I am building a string.
Any suggestions?
Thanks.

