C#基础[16] 委托(三)【多播委托】
2021-05-13 20:29
标签:oid lte color str style lin ati write pre C#基础[16] 委托(三)【多播委托】 标签:oid lte color str style lin ati write pre 原文地址:http://www.cnblogs.com/lolitagis/p/7532149.html public delegate void DelTest();
class Program
{
static void Main(string[] args)
{
DelTest del = T1;
del += T2;
del += T3;
del+= T4;
del -= T3;
del -= T1;
del();
Console.ReadKey();
}
public static void T1()
{
Console.WriteLine("我是T1");
}
public static void T2()
{
Console.WriteLine("我是T2");
}
public static void T3()
{
Console.WriteLine("我是T3");
}
public static void T4()
{
Console.WriteLine("我是T4");
}
}
上一篇:c#认证考试试题。
文章标题:C#基础[16] 委托(三)【多播委托】
文章链接:http://soscw.com/index.php/essay/85301.html