C#多线程编程笔记(5.1)-使用await操作符获取异步任务结果

  • Post author:
  • Post category:其他



近来在学习Eugene Agafonov编写的《C#多线程编程实战》(译),做些笔记也顺便分享一下^-^



本例将讲述使用异步函数的基本场景,比较使用TPL和使用await操作符获取异步操作结果的不同之处。

using System;
using System.Threading.Tasks;
using System.Threading;
using System.Dynamic;
using System.Runtime.CompilerServices;
using ImpromptuInterface;

namespace 对动态类型使用await
{
    class Program
    {
        static void Main(string[] args)
        {
         



版权声明:本文为qq_35445058原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。