Hi Experts,
I'm confusing when to use string builder over String Type.
I Think If i'm doing more concatenation operations , it is preferable to use StringBuilder.
Can anybody tell me , the performance issues regarding usage of stringbuilder.
Thanks In advance.

when can I use StringBuilder over String Type?
Alex Yakhnin - MSFT
Thank u boban
then when the no of concatenations are more than 5 , it is better to use StringBuilder . Am I right
wls1973
Hi,
For more information, see: http://msdn2.microsoft.com/en-us/library/system.text.stringbuilder(VS.80).aspx
Thanks
Asifkhan75025
Hello,
if the concatenations are more than 5, use StringBuilder.... this is the example rule of boban...The same way you can define your own rule and see what is best for you. If there are more number of modifications on the string, it is better to use StringBuilder.
chxfryer
biw
Yes, you are right. One should use StringBuilder if there is number of concatenations. This will give you better performance compare to using "+" with string type.
Following explains about StringBuilder
http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconusingstringbuilderclass.asp
Hope this helps you!!!!