csharp Async Vs等待

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Async Vs等待相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace async
{
    class Program
    {
        static void Main(string[] args)
        {
            Method();
            Console.WriteLine("now right here");
            Console.ReadKey();
        }
        public static async void Method()
        {
            await Task.Run(new Action(Speak));
            Console.WriteLine("Here is contiune thread");
        }
        public static void Speak()
        {
            Thread.Sleep(20000);
            Console.WriteLine("I am done");
        }
    }
}

以上是关于csharp Async Vs等待的主要内容,如果未能解决你的问题,请参考以下文章

第十五节:深入理解async和await的作用及各种适用场景和用法

csharp CSharp的Async Main

csharp CSharp的Async Main

csharp async / awaitの例

csharp Async Helper

csharp 发送api调用async.cs