16
1
using System;
2
using System.Text;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
StringBuilder sb = new StringBuilder("Hello ",50);
9
10
sb.Append("World!!");
11
sb.AppendLine("Hello C#!");
12
sb.AppendLine("This is new line.");
13
14
Console.WriteLine(sb);
15
}
16
}
Cached Result