XamlValueConverter<TConverterBase>.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether this instance of XamlValueConverter<TConverterBase> and an object have the same value.
Overloads
Equals(Object) |
Determines whether this instance of XamlValueConverter<TConverterBase> and a specified object, which must also be a XamlValueConverter<TConverterBase> object, have the same value. |
Equals(XamlValueConverter<TConverterBase>) |
Determines whether this instance of XamlValueConverter<TConverterBase> and another XamlValueConverter<TConverterBase> object have the same value. |
Equals(Object)
Determines whether this instance of XamlValueConverter<TConverterBase> and a specified object, which must also be a XamlValueConverter<TConverterBase> 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.
Returns
true
if obj
is a XamlValueConverter<TConverterBase> and its value is the same as this instance; otherwise, false
.
Applies to
Equals(XamlValueConverter<TConverterBase>)
Determines whether this instance of XamlValueConverter<TConverterBase> and another XamlValueConverter<TConverterBase> object have the same value.
public:
virtual bool Equals(System::Xaml::Schema::XamlValueConverter<TConverterBase> ^ other);
public bool Equals (System.Xaml.Schema.XamlValueConverter<TConverterBase> other);
override this.Equals : System.Xaml.Schema.XamlValueConverter<'ConverterBase (requires 'ConverterBase : null)> -> bool
Public Function Equals (other As XamlValueConverter(Of TConverterBase)) As Boolean
Parameters
The XamlValueConverter<TConverterBase> to compare.
Returns
true
if other
is a XamlValueConverter<TConverterBase> and its value is the same as this instance; otherwise, false
.
Implements
Applies to
.NET