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

本文共 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

你可能感兴趣的文章
StackPanel
查看>>
SPUserResizableView
查看>>
UML类图示例
查看>>
sh ./ 执行区别
查看>>
宏定义(#ifndef+#define+#endif)的作用
查看>>
Prometheus安装部署以及配置
查看>>
Oracle存储过程大冒险-2存储过程常用语法
查看>>
taobao-pamirs-schedule-2.0源码分析——类设计
查看>>
10位程序员眼中的2007:寻找软件开…
查看>>
Stream API
查看>>
Web开发之-DOM操作对象
查看>>
APUE第15章学习扎记之程序的存储区布局试验
查看>>
ubuntu升级16.04 inter idea 中文输入法无效
查看>>
查找命令集:which/whereis/locate/find
查看>>
三目运算判断jsp脚本里面的值
查看>>
sqlserver 版 try catch
查看>>
sshtunnel在本地访问云服务器mysql
查看>>
Java类加载器( 死磕8)
查看>>
小蚂蚁学习APP接口开发(1)—— json方式封装通信接口
查看>>
我的友情链接
查看>>