首页 > Windows开发 > 详细

c#多播委托

时间:2016-05-24 12:06:29      阅读:283      评论:0      收藏:0      [点我收藏+]
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#多播委托

原文:http://www.cnblogs.com/mengluo/p/5522769.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!