By tag: MemoryLeak
0
kicks
C#: Care about Event Memory Leaks with Delegate.GetInvocationList()
Subscribed events are one of the most common reasons of memory leaks in .Net. This means that if you have an object that has an event and there are other object that are subscribed to that event, the original object won't be properly disposed until all events are unsubscribed since an event is a st...