C#.NET

C#.NET初步认识

2018-11-21  本文已影响0人  DouDouZH

一、C#与.NET是什么?

二、C#与.NET都能做什么?

三、.NET两种交互模式

四、VS的认识

操作界面

五、Hello World

项目目录

代码Program.cs它是主类

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

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello world");
            //停止,防止一闪而过 按任意键继续
            Console.ReadKey();
        }
    }
}
运行结果9 就,,
上一篇 下一篇

猜你喜欢

热点阅读