System.Xml.Xsl.XmlQueryCardinality.IsSubset C# (CSharp) 메소드

IsSubset() 개인적인 메소드

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