As long as you have IronPython 2.7.3 you should be able to compile now with this commit.
21 lines
371 B
C#
21 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FileWatcher
|
|
{
|
|
public class MyEvtArgs<T> : EventArgs
|
|
{
|
|
public T Value
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
public MyEvtArgs(T value)
|
|
{
|
|
this.Value = value;
|
|
}
|
|
}
|
|
}
|