The AppendLine() method appends the content and add a new line on the end.
Firstly, set the StringBuilder −
StringBuilder str = new StringBuilder();
Use AppendLine() −
str.AppendLine("Accessories");
str.AppendLine();
str.AppendLine("Electronics");The following is the complete code −
Example
using System;
using System.Text;
class Demo {
static void Main() {
StringBuilder str = new StringBuilder();
str.AppendLine("Accessories");
str.AppendLine();
str.AppendLine("Electronics");
Console.Write(str);
}
}Output
Accessories Electronics