A
awk
You havent declared an event of type one of your delegates in your code.
eg
public event Changed FileWatcherChanged;
and you raise this
protected virtual void OnChanged(object sender, FileSystemEventArgs e)
{
changed(e.ChangeType);
}
Regards,
A
eg
public event Changed FileWatcherChanged;
and you raise this
protected virtual void OnChanged(object sender, FileSystemEventArgs e)
{
changed(e.ChangeType);
}
Regards,
A