What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / susan
StringBuilder is more efficient in the cases, where a lot
of manipulation is done to the text. Strings are immutable,
so each time it is being operated on, a new instance is created.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is typeof c#?
What is task parallel library?
What are functions c#?
What is meant by collections in c#?
Define MSIL, and how does it works? Why our developers need an appreciation of it if at all?
Can we maintain state in webservice?
What is icomparer in c#?
What are functions in c#?
What is string empty?
What is default constructor c#?
Which is faster array or arraylist in c#?
How long has c# been around?
Can an array be null c#?
Why do we overload constructors?
What is a partial method?