Warum String.Concat () in C # verwenden?

Ich frage mich schon eine Weile. Gründe für die Verwendung von String.Concat () anstelle des Plus-Operators Ich verstehe das String.Format, da es mit dem Plus-Operator ungültig wird und Ihren Code schöner aussehen lässt.

wie zum Beispiel

string one = "bob";
string two = "jim";

string three = one + two;
string three = String.Concat(one,two);

Antworten auf die Frage(7)

Ihre Antwort auf die Frage