System.Xml.Xsl.Int32Pair.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( object other ) : bool
other object
Résultat 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;
        }