event handler
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Can we do polymorphism on event handlers in the event handler the default parameters will be sender and e. Can i add more parameters to that ? regards hari
Not unless the delegate has extra parameters
only two letters away from being an asset
-
Can we do polymorphism on event handlers in the event handler the default parameters will be sender and e. Can i add more parameters to that ? regards hari
If I understand your question No you cannot add extra parameters to system event handlers such as OnPaint or OnsizeChanged but you can on custom event handlers by adding extra parameters to the delegate. Everybody gotta be somebody