Exemplo n.º 1
0
        public int Invoke2(ref CSharpDeveloperMixin2 instance, IFunctionArgs <int, int, int, int> args)
        {
            //var i = args.Arg1;
            //var k = args.Arg3;

            args.ReturnValue = instance.Code(args.Arg1, args.Arg2, args.Arg3);

            //args.Arg1 = i;
            //            args.Arg3 = k;

            return(args.ReturnValue);
        }
Exemplo n.º 2
0
 public int Invoke3(ref CSharpDeveloperMixin2 instance, IFunctionArgs <int, int, int, int> args)
 {
     return(instance.Code(args.Arg1, args.Arg2, args.Arg3));
 }