Example #1
0
 private void Events_SH(Events o, CustomEventArg arg)
 {
 }
Example #2
0
 private void Pub_OnRise(object sender, CustomEventArg e)
 {
     Console.WriteLine(sender.ToString() + " " + e.Message);
 }
Example #3
0
 private void Events_RaiseCustomEvent(object sender, CustomEventArg e)
 {
     // throw new NotImplementedException();
 }
Example #4
0
 protected virtual void OnRiseEvent(CustomEventArg cusArg)
 {
     OnRise(this, cusArg);
 }