摘要: 一、HelloWorld几乎所有讲授编程语言的书籍都是从HelloWorld开始已经成为一种习惯,我们也不例外。using System;using SC = System.Console;public class WelcomeC{ public static void Main(string[] args) { SC.WriteLine("HelloWorld"); }}二、分析程序1.using指令作用:1.using 命名空间\命名空间.类这样可以在程序中直接用命名空间中的类型或类中的方法2.using 别名 = 命名空间\命名空间.类这样可以个命名空间... 阅读全文
posted @ 2013-02-21 19:02 redher 阅读(1416) 评论(0) 推荐(0)