delegates that add functionality to the delegated method

  • Thread starter Thread starter Fernando Rodríguez
  • Start date Start date
F

Fernando Rodríguez

Hi,

Is it possible to define a delegate that does something before or after
calleing the delegated method?

Thanks
 
Fernando,
Is it possible to define a delegate that does something before or after
calleing the delegated method?

Not in the delegate itself, no. But you can always point the delegate
to a method that does the extra work you want before and after calling
the original method.



Mattias
 
Back
Top