adspace
What is the difference between system.text.stringbuilder and system.string?
Answer Posted / Yuvraj Singh
System.String is an immutable string class, meaning once created, its content cannot be changed. System.Text.StringBuilder is a mutable alternative that can be resized dynamically as you add or remove characters.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers