AttributeCollection.Equals(Object) Method

Definition

Determines whether the current instance of the AttributeCollection object is equal to the specified object.

public:
 override bool Equals(System::Object ^ o);
public override bool Equals (object o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean

Parameters

o
Object

The object instance to compare with this instance.

Returns

true if the object that is contained in the o parameter is equal to the current instance of AttributeCollection; otherwise, false.

Remarks

For the compared objects to be equal, they must meet the following criteria:

  • The object that is contained in the o parameter must be an AttributeCollection object.

  • Both collections must contain the same number of items.

  • The key value of each entry in both collections must match.

    Note

    This method is primarily used by control developers.

Applies to

See also