Home »

What’s the difference between System.String and System.Text.StringBuilder classes?

Question ListCategory: C#.NETWhat’s the difference between System.String and System.Text.StringBuilder classes?
milleranthony7 author asked 9 years ago
1 Answers
jeanderson295 author answered 8 years ago

System.String is immutable. System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.

Please login or Register to Submit Answer