Hello, World! 发表于 2018-04-01 更新于 2024-12-20 本文字数: 166 阅读时长 ≈ 1 分钟 123456789101112using System;namespace HelloWorld{ class Program { static void Main(string[] args) { Console.WriteLine("Hello, World!"); } }}