0 votes
in Dot Net by
What are differences between system.stringbuilder and system.string?

1 Answer

0 votes
by

The main differences between system.stringbuilder and system.string are:

  1. system.stringbuilder is a mutable while system.string is immutable.
  2. Append keyword is used in system.stringbuilder but not in system.string.
...