EncryptionAlgorithms.Fraction.GetHashCode C# (CSharp) Method

GetHashCode() public method

returns a hash code for this fraction
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return (Convert.ToInt32((Numerator ^ Denominator) & 0xFFFFFFFF));
        }