What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / guest
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 ? | 3 Yes | 0 No |
Post New Answer View All Answers
What's the difference between class and object?
What’s a strong name?
What is the use of jit ? Jit (just - in - time) is a compiler which converts msil code to
What is readline c#?
Can we declare private class in c#?
How to handle exceptions that are raised in a component?
Why do we need encapsulation in c#?
What does writeline mean?
What is static and use of it?
What is the use of nullable types in c#?
What is better C# or VB.NET?
What do you mean by default constructor?
Is it possible to restrict the scope of a field/method of a class to the classes in the same namespace?
how to compare numbers and dispaly the largest ? *first thing I wanted to do is to input how many numbers to be compared *and then analyzed the largest then display it.
Can the nested class access, the containing class. Give an example?