vote up 5 vote down star
1

I am looking to pass an event to a helper function. This function will attach a method to the event. However, I am having trouble properly passing the event. I have tried passing a EventHandler<TEventArgs>. It compiles, but events are not attached (but are still added; it seems a copy of the event handler is made).

For example, if I have this:

public event EventHandler<EventArgs> MyEvent;

And the helper function:

public static void MyHelperFunction<TEventArgs>(EventHandler<TEventArgs> eventToAttachTo)
{
    eventToAttachTo += (sender, e) => { Console.WriteLine("Hello world"); };
}

And the caller:

MyHelperFunction(MyEvent);
MyEvent(null, new EventArgs()); // Does nothing.
flag

76% accept rate
@Strager: Would you mind elaborating a bit on the specifics of how you were using this? I found this question very interesting but I'm having difficulty seeing the use case. – John Feminella Mar 20 at 14:13
@John Feminella, I was creating some helper functions, and one synchronously waits for an event. They are used mainly to reduce code reuse for several WaitFor methods (e.g. WaitForConnected) in my networking classes (which operated asynchronously). – strager Mar 20 at 19:43

2 Answers

vote up 5 vote down check

The reason why this does not work is += when applied to a delegate creates a new delegate which is the combination of the old and the new. It does not modify the existing delegate.

In order to get this to work you will have to pass the delegate by reference.

public static void Helper(ref EventHandler<EventArgs> e)
{
    e+= (x,y) => {};
}

The reason this works outside of the method is because the LHS is still the actual field. So += will create a new delegate and assign back to the member field.

link|flag
Interesting. So I guess += recreates the delegate (like e = e + func). Thanks for your help! Spent several hours trying to debug my code (blaming it on threading) when in fact an event wasn't being fired when it should have. – strager Mar 8 at 15:28
@strager, When you hit situations like this, it's a good idea to whip out Reflector. It will un-wind some misleading syntax constructs and show you what's actually happening. – JaredPar Mar 8 at 15:31
A problem with using ref: I get the following error if I use Helper(ref myClassInstance.MyEvent): The event MyEvent can only appear on the left hand side of += or -= (except when used from within the type MyClass). How can I work around this? – strager Mar 8 at 18:14
To note, I am doing this only in my unit test (so I can use internal, I think), but it'd be nice to have a clean public solution as well. – strager Mar 8 at 18:17
I have this same problem. did you find a way around the left side error? – Jason Coyne Aug 4 at 22:36
vote up 0 vote down

Just guessing: Have you tried passing it as ref?

public static void MyHelperFunction<TEventArgs>(ref EventHandler<TEventArgs> eventToAttachTo)

MyHelperFunction(ref MyEvent);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.