c#多播委托
Posted 忧郁的小学生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#多播委托相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { public delegate void del(); class Program { static void Main(string[] args) { del a = msg1; a += msg2; a += msg3; a -= msg4; a(); Console.ReadKey(); } public static void msg1() { Console.WriteLine("你好"); } public static void msg2() { Console.WriteLine("你好"); } public static void msg3() { Console.WriteLine("你好"); } public static void msg4() { Console.WriteLine("你好"); } } }
以上是关于c#多播委托的主要内容,如果未能解决你的问题,请参考以下文章