I understand the difference between String and StringBuilder (StringBuilder being mutable) but is there a large performance difference
String
StringBuilder
StringBuilder will perform better, from a memory stand point. As for processing, the difference in time of execution may be negligible.