What believe you from using the delegates System.Action or System.Func as EventDelegates instead of the classic EventHandler patterns. Will I therefore run into problems?
private bool disposed;
public event Action<IUnitOfWork, IContext> Disposing;
public void Dispose()
{
if (this.disposed)
{
return;
}
if (null != this.Disposing)
{
this.Disposing(this, this.AttachedContext);
}
this.disposed = true;
}
-
usage:
unitOfWorkInstance.Disposing += (u, c) => c.Rollback(u); // in my opinion more readable than
unitOfWorkInstance.Disposing += (sender, args) => args.AttachedContext.Rollback(sender as IUnitOfWork);
sorry for the awful englisch
disposingInternalstill going to be a delegate... You (purposely?) left it out of the code snippet so perhaps you're going to surprise me – sehe May 24 '11 at 9:30