예제 #1
0
파일: Robot.cs 프로젝트: ashwinmanny/Robot
        public object executeChipLogic(int[] input)
        {
            object result = null;

            try
            {
                result = chip.chipFunction(input);
            }
            catch (Exception e)
            {
                result = e;
            }

            return(result);
        }