Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 19, 2019 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmussak/41aa5f0d20a692eb1e98d6328876e124 to your computer and use it in GitHub Desktop.
Save vmussak/41aa5f0d20a692eb1e98d6328876e124 to your computer and use it in GitHub Desktop.
var sb1 = new StringBuilder();
sb1.Append("PRIMEIRA LINHA" + Environment.NewLine);
sb1.Append("SEGUNDA LINHA");
var x = sb1.ToString();
Console.WriteLine(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment