•Event
handlers traditionally were global or static functions
•In
.NET, delegates allow a lot more
•Delegates
are data structures (objects) that hold
–either
a pointer to global or static function
–or
a pointer to an object’s method and the object itself
–are
object-oriented, type safe and secure
•All
Delegates derive from the Delegate class
•