you are viewing a single comment's thread
view the rest of the comments
[–] 4 points 1 year ago

C# also has verbatim strings, in which you can just put a literal newline.

string foo = @"This string 
has a line break!";
  • source
  • parent