using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab { [Serializable] public class ValueEventArgs: EventArgs { public ValueEventArgs(T value) { this.Value = value; } public T Value { get; private set; } } }