Exemplo n.º 1
0
 public SafeEvent()
 {
     Invoke = ExpressionsUtils.GenerateLambdaFromInvoker <T>(this, InvokeAction);
 }
Exemplo n.º 2
0
        protected LambdaWrapper(T action)
        {
            this.action = action;

            Invoke = ExpressionsUtils.GenerateLambdaFromInvoker <T>(this, LocalInvoke);
        }