/**
* Created on: 2021年03月05日 12:31:16
* Author: Guest
* Copyright (c) 2021, All Rights Reserved.
*/
using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
/* 我的第一个 C# 程序*/
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}