码迷,mamicode.com
首页 > 其他好文 > 详细

委托 多播

时间:2017-11-14 14:35:08      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:多播委托   public   bsp   mes   +=   delegate   []   sys   cti   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 多播委托
{
    public delegate void  Dele();
    class Program
    {
        static void Main(string[] args)
        {
            Dele del = showMsg1;
            del += showMsg2;
            del += showMsg3;
            del += showMsg4;

            del -= showMsg1;
            del -= showMsg3;

            del();

            Console.ReadKey();
        }

        public static void showMsg1()
        {
            Console.WriteLine("T1");
        }

        public static void showMsg2()
        {
            Console.WriteLine("T2");
        }

        public static  void showMsg3()
        {
            Console.WriteLine("T3");
        }

        public static void showMsg4()
        {
            Console.WriteLine("T4");
        }
    }
}

显示

技术分享

 

委托 多播

标签:多播委托   public   bsp   mes   +=   delegate   []   sys   cti   

原文地址:http://www.cnblogs.com/my-cat/p/7831868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!