I am a bit new to c#
so please overlook if you find it trivial. I saw the following "weird" code.
Can anybody shed a bit of light on it.
public event Action _action;
if (_action != null)
{
foreach (Action c in _action.GetInvocationList())
{
_action -= c;
}
}
Specially the _action -= c;
part.