Search Results

3
votes

C# Dynamic Event Subscription

It's not a completely general solution, but if all your events are of the form void Foo(object o, T args) , where T derives from EventArgs, then you can use delegate contravariance to get away wit …