欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#开发教程初级-第一天-hello Word 控制台编程

程序员文章站 2022-06-03 12:22:52
...

C#开发教程第一天,hello word的编程!

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

namespace _1605MyFirstDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello Word!");
            //暂停控制台11
            Console.ReadLine();
        }
    }
}

效果图如下:

C#开发教程初级-第一天-hello Word 控制台编程


 

 

 

转载于:https://my.oschina.net/sokes/blog/675168