Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created March 19, 2019 22:26
Embed
What would you like to do?
var sb2 = new StringBuilder();
sb2.AppendLine("PRIMEIRA LINHA");
sb2.Append("SEGUNDA LINHA");
var y = sb2.ToString();
Console.WriteLine(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment