Multicast Delegates and Events |
Written by Mike James | ||||
Friday, 24 June 2016 | ||||
Page 3 of 3
Generic and Standard EventsOf course most of us simply make use of predefined events but there has been a change in the way that this works. Originally we needed a delegate type for each even slightly different even or we just passed object types to allow the event handler to work with a range of types. A better solution is to use generics and this is the approach now taken by the framework classes. For example, the original standard event handler was no generic:
Using object as the first parameter allowed any class to raise the event and still notify the users of the event handlers what had raised the event. The new generic version is:
which still leaves the sender untyped. A better version is:
In this case the event would be set up using something like:
Generics significantly simplify the implementation of events and by reducing the need to pass an object type increase overall type safety. Deep C#Buy Now From Amazon Chapter List
Extra Material <ASIN:1871962714> <ASIN:B09FTLPTP9>
Comments
or email your comment to: comments@i-programmer.info <ASIN:0321658701> <ASIN:0321637003> <ASIN:0596800959> <ASIN:047043452X> <ASIN:0123745144> |
||||
Last Updated ( Friday, 29 July 2016 ) |