What is the Main difference between String and
StringBuilder and why do we use StringBuilder.
Answer Posted / sandeep soni
String are Immutable (Not Modifiable). If you try to modify
the string it actually creates a new string and the old
string will be then ready for garbage collection.
StringBuilder when instantiated, creates a new string with
predefined capacity and upto that capacity it can
accodomate string without needing to create a new memory
location for the string....i mean it is modifiable and can
also grow as and when needed.
When the string needs to be modified frequently, preferably
use StringBuilder as its optimized for such situations.
| Is This Answer Correct ? | 113 Yes | 11 No |
Post New Answer View All Answers
what is main function of alternate teamplate of datalist?
What is dependency injection in simple words?
Can we set image Source dynamically using C# in WPF application?
what are the differences between a class and structure
What does it mean to override a method?
what is difference between is and as operators in c#?
Write a C# program to find the Factorial of n
Can c# inherit multiple classes?
What is transparent caching with aop ?
Describe the difference between inline and code behind - which is best?
How do I automate my desktop application?
Explain how is the dll hell problem solved in .net?
Why do we need collections in c#?
What is native image generator (ngen.exe)?
Can an abstract class have a constructor c#?