c# 7.1 Async Main方法

2021-02-18 05:20

阅读:749

标签:dev   down   href   syn   property   支持   target   ram   framework   

  1. 安装 .net framework sdk 7.1
  2. 新建一个 .net framework 7.1 的程序
  3. 在程序的工程文件的第一个 PropertyGroup  节点下加入以下子属性   7.1
  4. 编码
        static async Task Main()
        {
            await Test();
        }

        static Task Test()
        {
            Console.WriteLine("called async method");
            return Task.CompletedTask;
        }

 

.net core 2.0也支持,直接看第三步

c# 7.1 Async Main方法

标签:dev   down   href   syn   property   支持   target   ram   framework   

原文地址:https://www.cnblogs.com/myesn/p/csharp71-async-main.html


评论


亲,登录后才可以留言!