首页 > 其他 > 详细

01-hello_world

时间:2018-05-21 14:18:30      阅读:190      评论:0      收藏:0      [点我收藏+]
/*
 * 主文件是 xxx.cs
 * 基本的 hello world 程序如下:
 */

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _01_hello_world
{
    class Program
    {
        static void Main(string[] args)
        {
            /**/
            Console.WriteLine("hello world!"); // 显示
            Console.ReadKey(); // 是针对 VS.NET 用户的,wait key...
        }
    }
}

  

01-hello_world

原文:https://www.cnblogs.com/alexYuin/p/9066642.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!