Skip to content

Instantly share code, notes, and snippets.

@Larry57
Created June 3, 2011 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Larry57/1006346 to your computer and use it in GitHub Desktop.
Save Larry57/1006346 to your computer and use it in GitHub Desktop.
Generic version of EventArgs
using System;
namespace iTracker.UI.Forms.Tools
{
public class EventArgs<T> : EventArgs
{
public T Content
{
get;
set;
}
public EventArgs(T content)
{
Content = content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment