Org.IdentityConnectors.Framework.Common.Objects.BigInteger.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
        public override bool Equals(object o)
        {
            BigInteger other = o as BigInteger;
            if (other != null)
            {
                return Value.Equals(other.Value);
            }
            return false;
        }