2
Reply

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

Rangoli

Rangoli

17y
10.7k
0
Reply

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

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