Exemplo n.º 1
0
            public IFunctionParameterConfiguration Unbounded(bool flag)
            {
                if (configuration.HasUnboundedParameter())
                {
                    throw new ArgumentException("An unbounded parameter is already configured");
                }

                if (flag)
                {
                    attributes |= ParameterAttributes.Unbounded;
                }

                return(this);
            }