C# 在线编译器允许您的 C# 代码在线运行,而无需 Web 服务器。您可以像这样编写或粘贴 C# 代码:
using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* 我的第一个 C# 程序 */ Console.WriteLine("Hello World!"); Console.ReadKey(); } }