J
Jon Davis
If two delegates are created that point to the exact same method, and an
event is assigned both delegates, ...
myObj.MyEvent += new EventHandler(MyHandler);
myObj.MyEvent += new EventHandler(MyHandler);
.... does it recognize the duplicate method and ignore the second one, or
does it execute the same method twice when raised?
Jon
event is assigned both delegates, ...
myObj.MyEvent += new EventHandler(MyHandler);
myObj.MyEvent += new EventHandler(MyHandler);
.... does it recognize the duplicate method and ignore the second one, or
does it execute the same method twice when raised?
Jon