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

简化委托调用

时间:2016-11-22 20:00:05      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:this   简化   bool   委托   class   ref   div   color   eve   

 


// 调用
1
 public event TcpSend Send;

// 定义
2 public delegate void TcpSend(Object sender, ref object o, ref bool b);

 

原形

1   if (Send != null)
2   Send(this, ref s.obj, ref bSend);

 

简化

1   Send?.Invoke(this, ref s.obj, ref bSend);

 

简化委托调用

标签:this   简化   bool   委托   class   ref   div   color   eve   

原文地址:http://www.cnblogs.com/endv/p/6090671.html

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