InterviewSolution
| 1. |
What Is The Difference Between System.text.stringbuilder And System.string? |
|
Answer» 1. OBJECTS of type StringBuilder are MUTABLE where as objects of type SYSTEM.STRING are immutable. 1. Objects of type StringBuilder are mutable where as objects of type System.String are immutable. |
|