Is there an advantage to dynamically attaching/detaching event handlers?
Would manually detaching handlers help ensure that there isn't a reference remaining to a disposed object?
|
|
Is there an advantage to dynamically attaching/detaching event handlers? Would manually detaching handlers help ensure that there isn't a reference remaining to a disposed object?
|
||
|
|
|
|
It's not a question of using AddHandler versus Handles. If you are concerned about the reference to your event handler interfering with garbage collection, you should use RemoveHandler, regardless of how the handler was attached. In the form or control's Dispose method, remove any handlers. I have had situations in Windows Forms apps (.NET 1.1 days) where an event handler would be called on controls that had no other references to them (and which for all intents and purposes were dead and I would have thought been GC'ed) -- extremely hard to debug. I would use RemoveHandler to get rid of handlers on controls that you are not going to reuse. |
||
|
|
|
I'm pretty sure that the
The IL ended up like this:
Notice two identical blocks of code around IL_000b and IL_0051. I think it's just syntactic sugar. |
||
|
|
|
|
I manually attach handlers when I manually create controls (for example, dynamically creating a TextBox for each database record). I manually detach handlers when they are handling things I'm not quite ready to handle yet (possibly because I'm using the wrong events? :) ) |
||
|
|
|
Most of the the time the framwork takes care of that for you. Do you have an example of what you're trying to achieve? |
||
|
|
|
|
Manually detaching an event can be important to prevent memory leaks: the object that connects to an event fired by another object, will not be garbage collected until the object that fires the event is garbage collected. In other words, an "event-raiser" has a strong reference to all the "event-listeners" connected to it. |
||
|
|
|
|
I have an MDI Parent form that handles the events of a child form. When the child form is disposed, I need to make sure that the object gets garbage collected. It is possible that the form will be re-instantiated. When it is re-instantiated, will event handlers stack up and take up memory? |
||
|
|
|
I find that dynamically attaching/detaching event handlers is only of use where you have a long-lived object exposes events that are consumed by many short-lived objects. For most other cases the two objects are disposed around the same time and the CLR does a sufficient job of cleaning up on its own |
||
|
|