Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 19, 2019 22:19
Embed
What would you like to do?
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