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