What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / rahul
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 ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is serialization and deserialization in c# with example?
What does firstordefault mean in c#?
What is the difference between function and method in c#?
Does the system.exception class have any cool features?
What is the use of partial methods?
Are c# destructors the same as c++ destructors?
What is asax file in c#?
How is exception handling implemented in c#?
What is difference between gridview and form view?
Does c# have functions?
Why do we use delegates?
What are the fundamental differences between value types and reference types?
Explain how to implement an object pool in c#.net
If you donot specify an access modifier for a method, what is the default access modifier?
Why do we use generics in c#?