XamlType.Equals Method

Definition

Indicates whether the current object is equal to another object.

Overloads

Equals(Object)

Indicates whether the current object is equal to another object.

Equals(XamlType)

Indicates whether the current object is equal to another object of the same type.

Equals(Object)

Indicates whether the current object is equal to another object.

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 this object.

Returns

true if the current object is equal to the obj parameter; otherwise, false.

Applies to

Equals(XamlType)

Indicates whether the current object is equal to another object of the same type.

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

Parameters

other
XamlType

An object to compare with this object.

Returns

true if the current object is equal to the other parameter; otherwise, false.

Implements

Applies to