Ejemplo n.º 1
0
        /// <inheritdoc />
        public int CompareTo(Fingerprint other)
        {
            Contract.Assert(Length > 0);
            Contract.Assert(other.Length > 0);

            return(_bytes.CompareTo(other._bytes));
        }