What?s the advantage of using System.Text.StringBuilder over
System.String?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
Answer / kirti
StringBuilder is more efficient in cases where there is a large amount of string manipulation. Strings are immutable, so each time it's being operated on, a new instance is created.
Is This Answer Correct ? | 0 Yes | 0 No |
Which is better interface or abstract class in c#?
What is a nested type. Give an example?
What do you mean by jagged arrays in c#?
What is difference between the "throw" and "throw ex" in .net?
Explain about throw keyword?
10 Answers Emphasis, HCL, Satyam,
What is an example of a delegate?
What is Asynchronous call and how it can be implemented using delegates?
What is native image generator (ngen.exe)?
What is generic method in c#?
What is a console operator?
What is xaml in c#?
what happens if you inherit multiple interfaces and they have conflicting method names?