ValueEventArgs.cs
20 lines
| 365 B
| text/x-csharp
|
CSharpLexer
/ Implab / ValueEventArgs.cs
cin
|
r7 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab | ||||
{ | ||||
public class ValueEventArgs<T>: EventArgs | ||||
{ | ||||
public ValueEventArgs(T value) | ||||
{ | ||||
this.Value = value; | ||||
} | ||||
public T Value | ||||
{ | ||||
get; | ||||
private set; | ||||
} | ||||
} | ||||
} | ||||