C#入门

时间:2012-04-30 08:29:40
【文件属性】:
文件名称:C#入门
文件大小:222B
文件格式:CS
更新时间:2012-04-30 08:29:40
c# C#第一个程序,helloworld using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace helloworld { class helloworld { [STAThread] static void Main(string[] args) { Console.WriteLine("hello,world!"); Console.WriteLine("you entered the following {0} command line arguments:",args.Length); for (int i=0; i < args.Length; i++) { Console.WriteLine("{0}", args[i]); } } } }

网友评论

  • 不错的winForm入门程序