Skip to content

Instantly share code, notes, and snippets.

@Larry57
Created June 3, 2011 13:33
Show Gist options
  • 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