第一个C#程序——Hello World!

前言:  


    学习每一种语言的开始,都需要明白一句话,叫万丈高楼平地起,也要有一个程序,叫:Hello World!。大笑下面是步骤,代码和效果图:


步骤


点击文件——新建——项目——Visual C#——控制台应用程序——确定。


代码


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;             //以上代码自动生成

namespace Crazy                           //声明命名空间
{
    class HelloWorld                      //类名
    {
        static void  Main(string[] args)  //声明Main方法

        {
         Console.WriteLine("HelloWorld!");//调用了System.Console类的WriteLine()方法,将制定数据写入标准输出流
            Console.ReadLine();           //使程序暂停,按回车,程序继续运行
        }
    }
}


效果图:



你可能感兴趣的:(第一个C#程序——Hello World!)