+1 vote
in C Sharp by
Explain String Builder class in C#?

1 Answer

0 votes
by
This will represent the mutable string of characters and this class cannot be inherited. It allows us to Insert, Remove, Append and Replace the characters. “ToString()” method can be used for the final string obtained from StringBuilder. For example,

StringBuilder TestBuilder = new StringBuilder("Hello");

TestBuilder.Remove(2, 3); // result - "He"

TestBuilder.Insert(2, "lp"); // result - "Help"

TestBuilder.Replace('l', 'a'); // result - "Heap"

Related questions

+1 vote
asked Jan 20, 2020 in C Sharp by AdilsonLima
+1 vote
asked May 6, 2020 in C Sharp by SakshiSharma
...