c# Event移除所有绑定,注销事件绑定
时间:2021-08-25 08:29:57
收藏:0
阅读:21
public delegate void d_ReadyToPrint(byte[] bytes);
public event d_ReadyToPrint ReadyToPrint;
public void ClearAllEvent()
{
if (ReadyToPrint == null) return;
Delegate[] dels = ReadyToPrint.GetInvocationList();
foreach (Delegate del in dels)
{
object delObj = del.GetType().GetProperty("Method").GetValue(del, null);
string funcName = (string)delObj.GetType().GetProperty("Name").GetValue(delObj, null);
Console.WriteLine(funcName);
ReadyToPrint -= del as d_ReadyToPrint;
}
}
原文:https://www.cnblogs.com/xhztech/p/15182868.html
评论(0)