I am trying to understand the excel add in programming using C#. For such a project there is a file called ThisAddIn.cs which handles all the events like WorkBookOpen, WorkBookClose, etc. The code to handle such an event is something like this -
this.Application.WorkbookOpen += new Excel.AppEvents_WorkbookOpenEventHandler(Application_WorkbookOpen);
This looks straightforward in terms of what it is doing but I am not understanding why is it using the += sign for assignment instead of just = symbol. What does the += symbol signify in this type of assignment. Is it something related to C# or specific to AddIn development. I am also very new to C#. Any help would be appreciated.
Thanks.