Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum What is the difference between “StringBuilder” and “String” in C#? StringBuilder is mutable, which means once object for stringbuilder is created, it later be modified either using Append, Remove or Replace. String is immutable and it means we cannot modify the string object and will always create new object in memory of string type.
Related Topics