You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since .Net Framework version 2.0 it is not necessary to declare a delegate that specifies a class derived from System.EventArgs. The System.EventHandler<TEventArgs> delegate mechanism should be used instead as it allows any class derived from EventArgs to be used with that handler.
This rule raises an issue when an old style delegate is used as an event handler.
The text was updated successfully, but these errors were encountered:
RSPEC-3908
Since .Net Framework version 2.0 it is not necessary to declare a delegate that specifies a class derived from
System.EventArgs
. TheSystem.EventHandler<TEventArgs>
delegate mechanism should be used instead as it allows any class derived fromEventArgs
to be used with that handler.This rule raises an issue when an old style delegate is used as an event handler.
The text was updated successfully, but these errors were encountered: