adspace
What is difference between system.string and system.stringbuilder classes?
Answer Posted / Arpita Gupta
System.String is an immutable class representing a sequence of characters, while System.Text.StringBuilder is a mutable character-based object that can be used to efficiently build or manipulate strings. StringBuilder provides methods for appending, inserting, and deleting characters in a string.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers