Exemplo n.º 1
0
        public static Delegate to_delegate(Type t, ArrowVoid f)
        {
            ArrowVoidWrapper w = new ArrowVoidWrapper(f);

            return(Delegate.CreateDelegate(t, w, "Run"));
        }
Exemplo n.º 2
0
 public ArrowVoidWrapper(ArrowVoid f)
 {
     this.f = f;
 }