I understand the difference between String and StringBuilder (StringBuilder being mutable) but is there a large performance difference
String
StringBuilder
My approach has always been to use StringBuilder when concatenating 4 or more strings OR When I don't know how may concatenations are to take place.
Good performance related article on it here