I am wondering what is the \"best practice\" to break long strings in C# source code. Is this string
\"string1\"+ \"string2\"+ \"string3\"
con
The concatenation is done at compile time, so there is no runtime overhead.