예제 #1
0
파일: EventDemo.cs 프로젝트: VqSoft/VqDemos
 protected virtual void OnPriceChanged(PriceChangedEventArgs e)
 {
     if (PriceChanged != null)
     {
         PriceChanged(this, e);
     }
 }
예제 #2
0
파일: EventDemo.cs 프로젝트: VqSoft/VqDemos
 private static void Iphone_PriceChanged(object sender, PriceChangedEventArgs e)
 {
     Console.WriteLine("IPhone price from {0} to {1}", e.OldPrice, e.NewPrice);
 }