AttachableMemberIdentifier.Equals Method

Definition

Determines whether two AttachableMemberIdentifier objects have the same value.

Overloads

Equals(Object)

Determines whether this instance of AttachableMemberIdentifier and a specified object have the same value.

Equals(AttachableMemberIdentifier)

Determines whether this instance and another specified AttachableMemberIdentifier object have the same value.

Equals(Object)

Determines whether this instance of AttachableMemberIdentifier and a specified object have the same value.

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

Parameters

obj
Object

The object to compare with the current AttachableMemberIdentifier.

Returns

true if obj is an AttachableMemberIdentifier and if its value is the same as this instance; otherwise, false.

Applies to

Equals(AttachableMemberIdentifier)

Determines whether this instance and another specified AttachableMemberIdentifier object have the same value.

public:
 virtual bool Equals(System::Xaml::AttachableMemberIdentifier ^ other);
public bool Equals (System.Xaml.AttachableMemberIdentifier other);
override this.Equals : System.Xaml.AttachableMemberIdentifier -> bool
Public Function Equals (other As AttachableMemberIdentifier) As Boolean

Parameters

Returns

true if the objects have the same value; otherwise, false.

Implements

Remarks

The values that this method checks for equality are DeclaringType and MemberName.

Applies to