System.Xml.Xsl.XmlQueryTypeFactory.Product C# (CSharp) Method

Product() public static method

Compute a sequence with cardinality *= c.
public static Product ( XmlQueryType t, XmlQueryCardinality c ) : XmlQueryType
t XmlQueryType the type to sequence
c XmlQueryCardinality the cardainality multiplier
return XmlQueryType
        public static XmlQueryType Product(XmlQueryType t, XmlQueryCardinality c) {
            return PrimeProduct(t, t.Cardinality * c);
        }