Como: Gerar literais String MultiLine
Este exemplo demonstra duas maneiras de se construir uma literal de seqüência combinado.
Exemplo
string myString1 = "This is the first line of my string.\n" +
"This is the second line of my string.\n" +
"This is the third line of the string.\n";
string myString2 = @"This is the first line of my string.
This is the second line of my string.
This is the third line of the string.";
Compilando o código
Copie o código e cole-o a Main método de um aplicativo de console.
Consulte também
Conceitos
Translation from VPE for Csharp linguagem Primer