What's the advantage of using System.Text.StringBuilder over
System.String?

Answers were Sorted based on User's Feedback



What's the advantage of using System.Text.StringBuilder over System.String?..

Answer / prathap

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 ?    23 Yes 1 No

What's the advantage of using System.Text.StringBuilder over System.String?..

Answer / article

Hi..

Mutable & Immutable

1)string is immutabel.
i.e. whenever you create any changes to a string a new
object is created in memory.
2)StringBuilder has advantage String
To overcome this the stringBuilder is provided we can make
ammendments to the stringBuilder object without creating a
new object. Therefore whenever a lot operations are to be
made on a string then StringBuilder should be used in place
of String.

Thank's
Pradhan Prasanta Kumar
http://globaltouch.in

Is This Answer Correct ?    9 Yes 3 No

What's the advantage of using System.Text.StringBuilder over System.String?..

Answer / abhinay kumar

stiringbuilder is mutable but string is immutable

i.e mutable means that if we define a variable with
stringbuilder and assigne the value to another
stringbuilder variable and if we change the value then the
reflaction will be seen on the both variable (it made
change on the same memory location reference)

immutable means if we define a variable with string and
assigne the value to another string variable and if we
change the value then the reflaction will not be seen on
the both variable

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is the Global.asax used for?

7 Answers   Siebel Systems,


What is CTE in sql server 2005?

3 Answers   Minecode,


when u enter the data in one text box once u completed entering the text box data then one page has to be popuped and the text has to be displayed in the parent page

1 Answers  


What are the different types of cookies in asp.net?

0 Answers  


Explain Generics?

1 Answers  






How is mvc different from asp.net? : Asp.Net MVC

0 Answers  


How can u handle Exceptions in Asp.Net?

4 Answers  


Differentiate between globalization and localization.

0 Answers  


What is the use of worker process in asp.net?

0 Answers  


Define globalization and localization.

0 Answers  


What is the procedure to handle the process request using mhpm events fired? : asp.net mvc

0 Answers  


What is the use of response redirect in asp.net?

0 Answers  


Categories