Frage im Vorstellungsgespräch bei Walmart

What is the difference between String and StringBuilder classes in .NET?

Antwort im Vorstellungsgespräch

Anonym

10. Sept. 2012

string is immutable. Use Stringbuilder to build strings from smaller strings. If you use string for that like string s = "this" + " assigns" + " lots" + "of" + " little" + " strings"; then for each intermediate sum, a new string is allocated, and the smaller strings used before have to be garbage collected.