0 votes
in C Sharp by

What is the difference between “StringBuilder” and “String” in C#?

1 Answer

0 votes
by
StringBuilder is mutable, which means once object for stringbuilder is created, it later be modified either using Append, Remove or Replace.

String is immutable and it means we cannot modify the string object and will always create new object in memory of string type.

Related questions

0 votes
asked Sep 18, 2023 in Dot Net by Robin
0 votes
asked May 6, 2020 in C Sharp by SakshiSharma
...