Jurassic.BigInteger.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns the hash code for the current BigInteger object.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            uint result = 0;
            for (int i = 0; i < this.wordCount; i++)
                result ^= this.bits[i];
            return (int)result;
        }