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 are c# i/o classes?
What is using keyword?
What is default access modifier for class in c#?
What language is arduino?
What is uint64_t?
What is use of list in c#?
Name some properties of thread class.
What is a ienumerator?
Can we assign null value to integer?
Is array ienumerable c#?
How does c# generics and c++ templates compare?
Define clr in .net?
Define a jagged array in c#?
How do you prevent a method from being overridden in c#?
What is the difference between // comments, /* */ comments and /// comments?