Possible Duplicate:
Does C# optimize the concatenation of string literals?
string foo = "bar1" + "bar2" + "bar3";
Does the c# compiler internally apply the string.Concat method ?
Then it would be better to use the + operator for the readability sake.