I am wondering what is the \"best practice\" to break long strings in C# source code. Is this string
\"string1\"+ \"string2\"+ \"string3\"
con
There´s any way to do it. My favorete uses a string´s method´s from C#. Sample One:
string s=string.Format("{0} {1} {0}","Hello","By"); result is s="Hello By Hello";