Two useful generic utility classes for .Net applications
Posted on August 5, 2007
| /// <summary> /// By Jean-Paul S. Boodhoo /// From http://blog.codebetter.com/blogs/jean-paul_boodhoo/archive/2007/07/11/165483.aspx#165493 /// </summary> /// <typeparam name="T">event specific data type</typeparam> public class EventArgse<T> : EventArgs where T : new() { public new static readonly EventArgse<T> Empty; private readonly T eventData; static EventArgse() private EventArgse() public EventArgse(T eventData) public T EventData |
|
/// <summary> |
Filed Under Uncategorized | Leave a Comment
Leave a Comment
If you would like to make a comment, please fill out the form below.