What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / 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 |
Post New Answer View All Answers
What does a constructor do c#?
How do you serialize in c#?
What is the advantage of constructor?
Define mutex in C#?
What is response redirect in c#?
What is the use of jit ? Jit (just - in - time) is a compiler which converts msil code to
What is a generic class?
What is difference between a constant and read-only in C#?
Is arraylist faster than linkedlist?
What is data reader in c#?
What are the different types of comments in c#?
What is the default value of guid in c#?
What is Covariance and contravariance in C#?
Are all methods virtual in c#?
Why extension method is static?