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

委托 和 事件

时间:2017-11-13 13:45:23      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:code   不同   console   eve   class   style   ring   函数   使用   

委托与事件一般都要联合使用

public class ClassEvent
    {
        public delegate void test_event(string s);
        public event test_event t_event;

        public void show(string s)
        {
            if (t_event != null)
            {
                t_event(s);
            }
        }
    }//end
  ClassEvent classevent = new ClassEvent();
                classevent.t_event += delegate(string s)
                {
                    Console.WriteLine("name2:{0}", s);
                };
                classevent.t_event += classevent_t_event;
                classevent.show("123");
说明:
委托和事件 其实与 Action 和Func 类似,不同之处是,Action 和 Func 在初始化的时候,需要默认带一个委托的函数。

 

委托 和 事件

标签:code   不同   console   eve   class   style   ring   函数   使用   

原文地址:http://www.cnblogs.com/hcfan/p/7825651.html

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