WHAT IS THE DIFFERENCE BETWEEN STRING AND STRING BUILDER ?
Answers were Sorted based on User's Feedback
Answer / raviraj
String and String Builder class shows resemblance in terms
of values they accept(that contain series of haracters).But
the thing that distinguishes them is that string is
immutable .Immutable in the sense it will create a new copy
of memory whenever a new string is concatenated to the
existing string variable That means the existing memory is
deleted and replaced by the new memory.Whereas
Stringbuilder is mutable whenever we append a new string to
the existing string variable using append method the memory
containing the original string is extended to contain the
new string as well i.e, it won`t replace it with new memory
allocation.Hence performing string concatenations within
the same variable in the string class variables will affect
their performance.
| Is This Answer Correct ? | 17 Yes | 0 No |
Answer / stanly jose
String and StringBuilder class stores strings. But you
cannot change a String object after creating one.
eg: String name = "Stanly";
you wan to change the same string name to
eg: name = "Stanly Jose";
then a new String object is creating in memory and assign
the new value as "Stanly Jose".
(A new name object is creating in memory and the
value "Stanly Jose" is assinging to the newly created
space.)
But StringBuilder class occupies the same space even if you
change the value.
If you are doing string concatenation StringBuilder class
is far better in performance than String class.
You can use StringBuilder's Append() method to use
concatenation.
note:
system.string is immutable,system.stringbuilder was
designed with the purpose of having a mutable string where
a variety of operations can be performed.
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / sharifuddin
StringBuilder is a mutable, means no need to create new
variable,
But in string it is immutable, means reverse of string
builder each and every time new object for every new object
exist.
| Is This Answer Correct ? | 3 Yes | 0 No |
Why do we need indexers in c#?
Define thread? Explain about multithreading?
Why do we use 0?
what is c# command?
What is a verbatim string literal and why do we use it?
Could you explain the difference between func vs action vs predicate?
What are the value types in c#?
What do multicast delegates mean?
An Array is a Ref Type? what about the array elements which are value type(int,Float...etc)?
Can we call server-side code (c# or vb.net code) from javascript?
What are circular references? How garbage collection deals with circular references.
Are there constructors in c sharp?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)