Question
August 28, 2008 at 09:05 PM
slasher2661996

C# EventHandlers

by slasher2661996 . Updated 18 years ago

Ive been trying to find out if you can add more than 1 *handler* to an event say:

Timer t = new Timer();
t.Tick += new EventHandler(ontick);
t.Tick += new EventHandler(ontick2);

Would this work?
Thanks in advanced.

This discussion is locked

All Comments