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();
}
}
}
效果图如下:
转载于:https://my.oschina.net/sokes/blog/675168
上一篇: 计算机内部的二进制存储
下一篇: Underscore模板的使用