码迷,mamicode.com
首页 > Windows程序 > 详细

c# 7.1 Async Main方法

时间:2018-01-25 13:06:56      阅读:440      评论:0      收藏:0      [点我收藏+]

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

  1. 安装 .net framework sdk 7.1
  2. 新建一个 .net framework 7.1 的程序
  3. 在程序的工程文件的第一个 PropertyGroup  节点下加入以下子属性   <LangVersion>7.1</LangVersion>
  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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!