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