J
John
Hi
What are the advantages of a stringbuilder compared to a string?
Thanks
Regards
What are the advantages of a stringbuilder compared to a string?
Thanks
Regards
The performance difference will be too small to measure if you're only doing
a few concatenations, but if you're in a loop, building a big string (e.g.
HTML code for a web page) then StringBuilder has a definite advantage.
John said:What are the advantages of a stringbuilder compared to a string?