示例#1
0
        public void Execute(object[] args)
        {
            if (args == null)
            {
                throw new ArgumentNullException(nameof(args));
            }

            var result = _addProcessor.Add((long)args[0], (long)args[1]);

            Result = result;
        }
 public long AddTwoIntegers(long integerOne, long integerTwo)
 {
     return(_addProcessor.Add(integerOne, integerTwo));
 }