C# also has verbatim strings, in which you can just put a literal newline.
string foo = @"This string
has a line break!";
C# also has verbatim strings, in which you can just put a literal newline.
string foo = @"This string
has a line break!";