System.Xml.Xsl.Runtime.XmlIntegerSortKey.XmlIntegerSortKey C# (CSharp) Method

XmlIntegerSortKey() public method

public XmlIntegerSortKey ( long value, XmlCollation collation ) : System
value long
collation XmlCollation
return System
        public XmlIntegerSortKey(long value, XmlCollation collation)
        {
            // Invert long if sorting in descending order
            _longVal = collation.DescendingOrder ? ~value : value;
        }