Avoiding a large number of custom EventArgs?
- by Brian Ortiz
The class library I'm refactoring has a large number of events (over 50) each with its own Delegate, even though many have the same arguments. I starting switching them all over to use EventHandler and custom EventArgs but it is proving to be tedious and time consuming.
Is there an easier way to handle a situation like this, when you have a huge number of events?