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 |
How does dependency injection work c#?
Can we throw exception from catch block
What is the use of table aliases?
What does the initial catalog parameter define in the connection string?
What does void mean in c#?
What is a jagged array?
What is global asax in c#?
What is int parse in c#?
How long does it take to get a loop recorder put in?
Is python easier than c#?
What's the difference between a static method and a non static method c#?
What is Garbage Collection in .Net?