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