InterviewSolution
Saved Bookmarks
| 1. |
What's The Difference Between System.string And System.text.stringbuilder Classes? |
|
Answer» System.String is IMMUTABLE. System.StringBuilder was DESIGNED with the PURPOSE of having a MUTABLE string where a variety of operations can be PERFORMED. System.String is immutable. System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed. |
|