Interview Question
Qus: What are differences between system.stringbuilder and system.string?
Answers (2)
o system.stringbuilder is a mutable while system.string is immutable.
o Append keyword is used in system.stringbuilder but not in system.string.