A verbatim string literal is one in which no escape sequences are processed. The string contains exactly the characters entered. Verbatim strings can also span multiple lines.
1 2 3 4 5 | string multilineGuy1 = @"Thisisamultilinestring with embedded \t escape sequences"; |
In fact, you can only include a multiline string in your source code if it’s declared as a verbatim string.
1 2 | string multilineGuy1 = "Let me not to the marriage of true mindsAdmit impediments. Love is not love"; |
1 2 3 4 | string multilineGuy1 = @"Let me not to the marriage of true mindsAdmit impediments. Love is not loveWhich alters when it alteration finds,"; Console.WriteLine(multilineGuy1); |

