AttributeCollection.Equals(Object) Method

Definition

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

C#
public override bool Equals(object o);

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.

    Poznámka

    This method is primarily used by control developers.

Applies to

Produkt Verzie
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also