예제 #1
0
파일: Program.cs 프로젝트: sandipco/Events
 static void nameChangedNotification2(object sender, NameChangedEventArgs args)
 {
     Console.WriteLine("****************");
 }
예제 #2
0
파일: Program.cs 프로젝트: sandipco/Events
 static void nameChangedNotification(object sender, NameChangedEventArgs args)
 {
     Console.WriteLine("Name changed from {0} to {1}", args.oldValue, args.newValue);
 }