标签:blog http io ar 2014 div cti 代码
学习一门语言,本人第一个要练习的实例就是HelloWorld。
运行结果:
下面是代码:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HelloWorld { class Program { static void Main(string[] args) { //向控制台输出程序 Console.WriteLine("Hello World!"); //窗口停止等待按键 Console.ReadKey(); } } }
基于C#的HelloWorld,布布扣,bubuko.com
标签:blog http io ar 2014 div cti 代码
原文地址:http://www.cnblogs.com/xyue01/p/3925912.html