Jurassic.BigInteger.Equals C# (CSharp) Method

Equals() public method

Returns a value that indicates whether the current instance and a specified BigInteger object have the same value.
public Equals ( object obj ) : bool
obj object The object to compare.
return bool
        public override bool Equals(object obj)
        {
            if ((obj is BigInteger) == false)
                return false;
            if (this.wordCount != ((BigInteger)obj).wordCount)
                return false;
            return Compare(this, (BigInteger)obj) == 0;
        }