EventHandlers and Anonymous Delegates / Lambda Expressions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:42:07Z http://stackoverflow.com/feeds/question/439166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/439166/eventhandlers-and-anonymous-delegates-lambda-expressions 3 EventHandlers and Anonymous Delegates / Lambda Expressions Nicholas Mancuso 2009-01-13T14:44:11Z 2009-01-13T15:01:18Z <p>I'm hoping to clear some things up with anonymous delegates and lambda expressions being used to create a method for event handlers in C#; for myself at least.</p> <p>Suppose we have an event that adds either an anonymous delegate or lambda expression [for you lucky crowds that can use newer versions of .NET]. </p> <pre><code>SomeClass.SomeEvent += delegate(object o, EventArg e) { //do something }; </code></pre> <p>I have read that people in the past have forgotten about events that still have handlers which prevent the class from being garbage collected. How would one go about removing the added handler without just setting SomeEvent to null within the class. Wouldn't the following be an entirely new handler?</p> <pre><code>SomeClass.SomeEvent -= delegate(object o, EventArg e) { //do same thing }; </code></pre> <p>I could see storing the anonymous delegate / lambda expression in a variable, but that, to me at least, seems to defeat the entire purpose of being able to simply and succinctly add an event handler.</p> <pre><code>SomeEventDelegate handler = new SomeEventDelegate(delegate(object o, EventArg e) { //do same thing }); SomeClass.SomeEvent += handler; //... stuff SomeClass.SomeEvent -= handler; </code></pre> <p>Again, I understand that you could just do...</p> <pre><code>public override Dispose(bool disposing) { _someEvent = null; this.Dispose(); } </code></pre> <p>But I'm more interesting with just removing the dynamically created method from the Event. Hopefully someone can shed some light onto this for me. Thanks!</p> http://stackoverflow.com/questions/439166/eventhandlers-and-anonymous-delegates-lambda-expressions/439206#439206 0 Answer by AnthonyWJones for EventHandlers and Anonymous Delegates / Lambda Expressions AnthonyWJones 2009-01-13T14:51:33Z 2009-01-13T14:51:33Z <p>I think the problem is you seem to be proceeding from the assumption that having a delegate assigned to an object's event prevents it from being GCed.</p> <p>This as a simple statement is not true.</p> <p>With that said the perceived problem disappears.</p> <p>Initially in garbage collection everything is garbage. The GC runs through every thing currently available globally and on each stack and from these those other objects that they are referencing and so on, marking each as not garbage.</p> <p>How would such a graphing process manage to arrive at this object?</p> http://stackoverflow.com/questions/439166/eventhandlers-and-anonymous-delegates-lambda-expressions/439232#439232 5 Answer by Jon Skeet for EventHandlers and Anonymous Delegates / Lambda Expressions Jon Skeet 2009-01-13T14:58:23Z 2009-01-13T14:58:23Z <p>If object X has an event handler whose <em>target</em> is object Y, then object X being alive means that object Y can't be garbage collected. It doesn't stop object X from being garbage collected.</p> <p>Normally when something is disposed, it will become garbage pretty soon anyway, which means you don't have a problem.</p> <p>The problem with events and GC is if you forget to remove a subscribed handler from a <em>different</em> object - i.e. you have a listener which is disposed, but will never be garbage collected because there's still a reference to it from the event in a different object.</p> http://stackoverflow.com/questions/439166/eventhandlers-and-anonymous-delegates-lambda-expressions/439244#439244 1 Answer by chakrit for EventHandlers and Anonymous Delegates / Lambda Expressions chakrit 2009-01-13T15:01:18Z 2009-01-13T15:01:18Z <p><strong>You can't.</strong></p> <p>Just like you can't create anonymous type outside of its scope (except for some compiler tricks).</p> <p>That's why it's called anonymous.</p> <p>You have to save a reference somewhere... or use reflection.</p>