What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / 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 |
Post New Answer View All Answers
Does c# have functions?
Is lazy t thread safe?
what is method overloading in c#?
What is the max value of int32 in c#?
What is serialization in unity?
What is boxing and unboxing in c#?
Define the term immutable ?
What is use of abstract class in c#?
What is dataadapter c#?
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards
What is a generic in c#?
To create a localized application which namespaces are necessary?
What is an abstract class c#?
What is hashtable in c# with example?
You are designing a user control. You created new property called backgroundimage which is of type image. You wanted to disable storing this property in the user’s form. How to achieve this?