Jurassic.BigInteger.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

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