Saved Bookmarks
| 1. |
What Is The Difference Between System.string And System.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. |
|