public void Notify(object sender, ObsEventArgs args) { Observers.ForEach(x => { if (x != null) { x.Notify(sender, args); } }); }
public void Notify(object Sender, ObsEventArgs args) { Action(Sender, args); }