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

XmlDecimalSortKey() public method

public XmlDecimalSortKey ( decimal value, XmlCollation collation ) : System
value decimal
collation XmlCollation
return System
        public XmlDecimalSortKey(decimal value, XmlCollation collation)
        {
            // Invert decimal if sorting in descending order
            _decVal = collation.DescendingOrder ? -value : value;
        }