我需要取消订阅我的活动订阅的所有代表。但是我找到了两种方法来做到这一点..
class Cls
{
delegate void doDel();
static event doDel doE;
void Uns
{
//first
foreach (doDel item in doE.GetInvocationList())
{
doE -= item;
}
//second
doE = null;
}
}
之间有什么区别?什么方法最好,为什么?