博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#_delegate - 调用列表
阅读量:6457 次
发布时间:2019-06-23

本文共 908 字,大约阅读时间需要 3 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Delegate{    public delegate void Myfunction();    class Program    {                static void Main(string[] args)        {            Myfunction mf = (Myfunction)Myfunction.Combine(                new Myfunction[]{MethodA,MethodA,MethodB,MethodC}                );            mf();            foreach (Myfunction item in mf.GetInvocationList())            {                Console.WriteLine(item.Method.Name + " in list");            }            Console.ReadLine();        }        public static void MethodA() {            Console.WriteLine("A doing");        }        public static void MethodB()        {            Console.WriteLine("B doing");        }        public static void MethodC()        {            Console.WriteLine("C doing");        }    }}

转载于:https://www.cnblogs.com/MarchThree/p/3720453.html

你可能感兴趣的文章
《你有多少问题要请示》精华集粹
查看>>
深度 | 机器学习敲门砖:任何人都能看懂的TensorFlow介绍【转】
查看>>
leveldb学习:DBimpl
查看>>
MySQL存储引擎--MYSIAM和INNODB引擎区别
查看>>
[Recompose] Stream Props to React Children with RxJS
查看>>
打印图片
查看>>
apache 配置
查看>>
SHOW CREATE DATABASE Syntax
查看>>
rsync常见问题及解决办法
查看>>
半自动化运维之服务器信息维护
查看>>
AKM项目轶事之GBS同事转入GDC
查看>>
MySQL日期 专题
查看>>
C#中禁止程序多开
查看>>
分布式缓存Redis使用以及原理
查看>>
[LeetCode] Number of 1 Bits 位操作
查看>>
数据结构与算法JavaScript描述——队列
查看>>
练习二:结对练习
查看>>
JSON中JObject和JArray,JValue序列化(Linq)
查看>>
onclick与addEventListener的区别
查看>>
杂七杂八
查看>>