Created
March 18, 2016 10:11
-
-
Save Pzixel/1fcd64e8f4839b1b7889 to your computer and use it in GitHub Desktop.
TypedEventHandler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Serializable] | |
public delegate void TypedEventHandler<in TSender, in TEventArgs>( | |
TSender sender, | |
TEventArgs e | |
) where TEventArgs : EventArgs; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment