Ejemplo n.º 1
0
        public static IExecutionService AddMatrixRange(this IExecutionService service, IEnumerable <Matrix> matrices)
        {
            Guard.AgainstNull(service, nameof(service));

            if (matrices != null)
            {
                foreach (var matrix in matrices)
                {
                    service.AddMatrix(matrix);
                }
            }

            return(service);
        }