string — immutable. StringBuilder — mutable.
1string s = "Hello";2s += " World";3 4StringBuilder sb = new StringBuilder();5sb.Append("Hello");