Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 796 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 796 Bytes

项目的目标框架是.NET 6,运行本项目你最好需要先安装.NET 6 SDK

本项目支持c#9开始引入的top-level statements,同时也仍然兼容Main入口模式。

The typical starting point for a new console application looks like the following code:

using System;

namespace Application
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

The C# templates for .NET 6 use top-level statements:

// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

.NET开发路线图