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 are partial types in c#?
How can I check the type of an object at runtime?
Define c# and list the features.
Can you create partial delegates and enumerations?
How do I format in c#?
What does char mean in c#?
Why delegates are type safe?
What is ilasm.exe used for?
What is stringreader in c#?
How does c# achieve polymorphism?
What is the Signification of the "new " keyword in C#? example
What are the 3 elements of delegation?
Explain the use of Mutex in C#?
What is the value which is accepted by all data types ?
What is ienumerable <> in c#?