예제 #1
0
        public virtual void OnFoodReady(FoodReadyEventArgs e)
        {
            EventHandler <FoodReadyEventArgs> handler = FoodReady;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
 void HandleCustomEvent(object sender, FoodReadyEventArgs e)
 {
     Eat(e.thisFood);
 }