Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

+= operator with Events

Tags:

public void Bar() {     Foo foo = new Foo();     **foo.MyEvent += foo_MyEvent;**     foo.FireEvent();         }  void foo_MyEvent(object sender, EventArgs e) {     ((Foo)sender).MyEvent -= foo_MyEvent; } 

Hey I'm a bit unfamiliar with events, could someone tell me what the += operator does with events?

like image 405
Matt Avatar asked Jul 28 '10 19:07

Matt


2 Answers

+= subscribes to an event. The delegate or method on the right-hand side of the += will be added to an internal list that the event keeps track of, and when the owning class fires that event, all the delegates in the list will be called.

like image 200
mqp Avatar answered Jan 09 '23 05:01

mqp


The answer you have accepted is a nice simplified version of what += does, but it's not the full story.

The += operator calls the add method on the event. Similarly -= calls remove. This usually results in the delegate being added to the internal list of handlers which are called when the event is fired, but not always.

It is perfectly possible to define add to do something else. This example may help to demonstrate what happens when you call +=:

class Test {     public event EventHandler MyEvent     {         add         {             Console.WriteLine("add operation");         }          remove         {             Console.WriteLine("remove operation");         }     }             static void Main()     {         Test t = new Test();          t.MyEvent += new EventHandler (t.DoNothing);         t.MyEvent -= null;     }      void DoNothing (object sender, EventArgs e)     {     } }  

Output:

 add operation remove operation 

See Jon Skeet's article on events and delegates for more information.

like image 30
Mark Byers Avatar answered Jan 09 '23 06:01

Mark Byers