예제 #1
0
        protected void OnAsLongAsPrefixOnIsUsedApplierCouldBeNamedWhatever(MyEvent e)
        {
            if(OnEventApplierInvocation != null)
                OnEventApplierInvocation.Invoke(e);

            _value = e.Value;
        }
예제 #2
0
 public void ThisCouldBeNamedWhatEver(MyEvent e)
 {
     if (OnHandlerInvocation != null)
         OnHandlerInvocation.Invoke(e);
 }
예제 #3
0
 public void ASecondHandlerForSameEvent(MyEvent e)
 {
     if (OnHandlerInvocation != null)
         OnHandlerInvocation.Invoke(e);
 }