System.Xml.Xsl.Int32Pair.Equals C# (CSharp) Method

Equals() public method

public Equals ( object other ) : bool
other object
return bool
        public override bool Equals(object other) {
            if (other is Int32Pair) {
                Int32Pair o = (Int32Pair) other;
                return this.left == o.left && this.right == o.right;
            }

            return false;
        }