I want to ask the different between EventHandler
and EventHandler<T>
.
Previously I have implemented a EventHandler
, with a custom EventArgs which can be passed to the parent page from the user control.
I thought I need to apply EventHandler< T >
, however it can be implemented by using EventHandler
. (in fact there is weird error when I trying to apply EventHandler<T>
, the program is worked but error is shown in the IDE which I couldn't solve [C# Custom EventHandler ])
Thus, I want to know in what situation I need to apply EventHandler < T >
?
public event EventHandler AppendProcess;
public event EventHandler<MyEventArg> AppendProcess;
---Update--- this is how I invoke the event in the user control (as i said, i can pass object to parent page by doing this (although i don't know if it is correct to do so)
if (AppendProcess == null) { }
else
AppendProcess(this, new Common.WinLose_ProgressStage(Common.WinLose_SP_Parameter.upper, displayLevel + 1,
(int)Common.WinLose_Level.lvChild4, thename, refundratio,
selfproportion, -1, -1, loadlevel, isPlayer, betsource, gamecategory, false));
EventHandler<T>
is just a genericEventHandler
type, which avoids you having to declare a new delegate type for each kind ofEventArgs
you want to use.Consider
Control.KeyPress
for example. It's declared as an event of typeKeyPressEventHandler
. That delegate is just declared as:If
EventHandler<T>
(and generics) had been around when that was created, the event could have been declared as anEventHandler<KeyPressEventArgs>
instead, saving a delegate declaration. There are many, many delegates which are just likeEventHandler
, and only vary in the type of the second parameter -EventHandler<T>
avoids that redundancy.No if you don't have your own custom
EventArgs
subclass, there's no reason to useEventHandler<T>
... but if you do, it's much better to use it, so that the method handling the event receives your customEventArgs
subclass in a strongly-typed way.As an aside, your way of invoking the event handler isn't thread-safe. Another thread could unsubscribe the final event handler after your nullity check. If you're using C# 5, you should write it as:
If you're using C# 6 or later, you can use the null conditional operator: