Mercurial > pub > ImplabNet
comparison Implab/ValueEventArgs.cs @ 12:eb418ba8275b promises
refactoring, added WorkerPool
author | cin |
---|---|
date | Tue, 05 Nov 2013 19:55:34 +0400 |
parents | 7ea9363fef6c |
children |
comparison
equal
deleted
inserted
replaced
11:6ec82bf68c8e | 12:eb418ba8275b |
---|---|
3 using System.Linq; | 3 using System.Linq; |
4 using System.Text; | 4 using System.Text; |
5 | 5 |
6 namespace Implab | 6 namespace Implab |
7 { | 7 { |
8 [Serializable] | |
8 public class ValueEventArgs<T>: EventArgs | 9 public class ValueEventArgs<T>: EventArgs |
9 { | 10 { |
10 public ValueEventArgs(T value) | 11 public ValueEventArgs(T value) |
11 { | 12 { |
12 this.Value = value; | 13 this.Value = value; |