学习总结 vs软件简单了解

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();//用户录入,可以用来防止控制台运行完之后关闭

原文地址:https://www.cnblogs.com/zhoudi/p/5302254.html