예제 #1
0
 protected virtual void OnPartyStarted(Person person)
 {
     if (PartyStarted != null)
     {
         PersonEventArgs personEventArgs = new PersonEventArgs();
         personEventArgs.Name = person.Name;
         PartyStarted(this, personEventArgs);
     }
 }
예제 #2
0
 public void OnPartyStarted(Object source, PersonEventArgs args)
 {
     Console.WriteLine(this + " notifying party started was sent" + args.Name);
     OnMailSent();
 }