Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 19, 2019 22:19
Show Gist options
  • 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