Welcome to MSDN Blogs Sign in | Join | Help

July 2008 - Posts

Simple sample for Events and Delegates

I wanted to write a small sample to illustrate events and delegates. Here is a compact sample that illustrates it. using System; public class EventSample { public delegate void EventHandler (); public event EventHandler myeh; public void Method() { Console
 
Page view tracker