学习总结 vs软件简单了解

时间:2022-02-16 19:17:38

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;//调用命名空间
using System.Threading.Tasks;

namespace ConsoleApplication1//命名空间
{
class Program//类
{
//主函数:程序的入口,一个程序有且只有一个入口
static void Main(string[] args)
{
//在Main函数中开始写程序
Console.Write("hello world");//输出
Console.ReadLine();//用户录入,可以用来防止控制台运行完之后关闭

学习总结     vs软件简单了解