// 调用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);
时间: 2024-10-06 11:18:01
// 调用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);