Skip to content

Instantly share code, notes, and snippets.

@Pzixel
Created March 18, 2016 10:11
Show Gist options
  • Save Pzixel/1fcd64e8f4839b1b7889 to your computer and use it in GitHub Desktop.
Save Pzixel/1fcd64e8f4839b1b7889 to your computer and use it in GitHub Desktop.
TypedEventHandler
[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