.NET Weak Event Handlers – Part II
- by João Angelo
On the first part of this article I showed two possible ways to create weak event handlers. One using reflection and the other using a delegate.
For this performance analysis we will further differentiate between creating a delegate by providing the type of the listener at compile time (Explicit Delegate) vs creating the delegate with the type of…