吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2472|回复: 3
收起左侧

[其他转载] C# async await 笔记

[复制链接]
Cool_Breeze 发表于 2021-4-6 18:42
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using abc = Iner;

namespace Test
{
    class Program
    {
        static void Main()
        {
            for (int i=0; i<10; i++)
            {
                abc.A.a = i;
                Display(i);
            }
            Console.WriteLine("Main runing");
            Dalay();
            Console.WriteLine("await 不会阻塞调用者!");
            Thread.Sleep(1000);
            Console.WriteLine("Main runing ok!");
            
        }
        
        
        static async void Display(int n)
        {
            List<string> col = new List<string>();
            abc.A.b((int x, List<string> y) => {Console.WriteLine("Iner Action {0}", x); y.Add(n.ToString());});
            await Add(n.ToString(), col);
        }
        
        static async Task Add(string name, List<string> Col)
        {
           await Task.Delay(1);
           Col.Add(name);
           Console.WriteLine("**********************");
        }
        
        static async Task GetInerC()
        {
            foreach (string n in abc.A.c)
            {
                Console.WriteLine("Iner A c {0}", n);
                await Task.Delay(80);
            }
        }
        
        static async void Dalay()
        {
            await GetInerC();
        }
    }
}

namespace Iner
{
    public delegate void Ac<t>(t a);
    class A
    {
        public static int a = 11;
        public static List<string> c = new List<string>();
        public static Ac<Action<int, List<string>>> b = (Action<int, List<string>> a)=>{Console.Write("Iner : ") ;a(A.a, A.c);};
    }    
}

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
沉默味道12321 + 1 + 1 用心讨论,共获提升!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Mysql昊 发表于 2021-4-6 19:09
感谢楼主
pilciw 发表于 2021-4-6 19:29
明月相照 发表于 2021-4-6 20:28
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 17:28

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表