11
1
using System;
2
using System.Text;
3
public class Program {
4
public static void Main() {
5
6
StringBuilder sb = new StringBuilder();
7
8
sb.Append("Welcome to the C# Course!");
9
Console.WriteLine(sb.ToString());
10
}
11
}
Cached Result
Welcome to the C# Course!