May 2010
Intermediate to advanced
1272 pages
61h 18m
English
You declare your own events utilizing the Event keyword. This keyword requires you to specify the event name and eventually a delegate signature. Although not mandatory (Event allows specifying no arguments), specifying a delegate signature is useful so that you can take advantage of AddHandler for subsequently intercepting events. The code in Listing 15.3 shows an alternative implementation of the Person class in which an event is raised each time the LastName property is modified.
Listing 15.3 Implementing and Raising Events

Notice that in this particular case you need to implement the LastName property the old-fashioned way, ...
Read now
Unlock full access