Tagged Questions
5
votes
8answers
820 views
Best syntax to create multi-line string
What's the best way to create multi-line string in C#?
I know the following methods:
Using StringBuilder
var result = new StringBuilder().AppendLine("one").AppenLine("two").ToString()
looks too ...