System.Xml.Xsl.XmlQueryCardinality.IsSubset C# (CSharp) Method

IsSubset() private method

Returns true if this cardinality is guaranteed to be a subset of "other".
private IsSubset ( XmlQueryCardinality other ) : bool
other XmlQueryCardinality
return bool
        private bool IsSubset(XmlQueryCardinality other) {
            return (this.value & ~other.value) == 0;
        }
    #endif