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
Is lazy t thread safe?
Write the syntax for catching an exception in c#?
List the 5 different access modifiers in c#?
What is method overriding in c#
What’s thread.sleep() in threading ?
What are different types of classes in c#?
What is an example of a delegate?
What is dependency in software?
What is a constructor in c#?
What are the variables in c#?
What is default class in c#?
What is difference between sleep () and wait ()?
How many bytes is an int c#?
Explain acid rule of thumb for transactions in c#.
Is c# substring zero based?