从 W3Schools.cn 在线教程学习 Web 网络开发
运行结果尺寸: 625 x 591
Program.cs
 


using System;

namespace MyApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      string txt = "Hello\nWorld!";
      Console.WriteLine(txt);
    }
  }
}


Result:
Hello
World!