I understand the difference between String and StringBuilder (StringBuilder being mutable) but is there a large performance difference
String
StringBuilder
If you're doing a lot of string concatenation, use a StringBuilder. When you concatenate with a String, you create a new String each time, using up more memory.
Alex