// 이벤트를 발생시키는 메서드 만들기 public void tell() { if (MyEvent != null) { PublisherArgs args = new PublisherArgs("데이터"); MyEvent(this, args); } }
// 델리게이트가 부를 메서드 만들기 static void react(object sender, PublisherArgs e) { Console.WriteLine("MyEvent라는 이벤트 발생"); Console.WriteLine("이벤트 매개변수 : " + e.myEventData); }