What?s the advantage of using System.Text.StringBuilder
over System.String?
Answer Posted / swapna
StringBuilder is more efficient in the cases, where a lot
of manipulation is done to the text.
Strings are immutable, so each time it's being operated on,
a new instance is created
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is an xsd file?
Difference between call by value and call by reference in C#?
Is for loop faster than foreach?
What is deadlock in c#?
What is difference between mutable and immutable in c#?
What is an object pool in .net?
What is datatable in c#?
Is it possible to inherit multiple interfaces?
How to sign an assembly with strong name?
can multiple catch blocks be executed for a single try statement?
What does an indexer do?
Is xml tags are case sensitive?
What is parseexact c#?
What is difference between constants and read-only?
What is delegate in c#?