Index.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.
Overloads
Equals(Index) |
Returns a value that indicates whether the current object is equal to another Index object. |
Equals(Object) |
Indicates whether the current Index object is equal to a specified object. |
Equals(Index)
- Source:
- Index.cs
- Source:
- Index.cs
- Source:
- Index.cs
Returns a value that indicates whether the current object is equal to another Index object.
public:
virtual bool Equals(Index other);
public bool Equals (Index other);
override this.Equals : Index -> bool
Public Function Equals (other As Index) As Boolean
Parameters
- other
- Index
The object to compare with this instance.
Returns
true
if the current Index object is equal to other
; false
otherwise.
Implements
Applies to
Equals(Object)
- Source:
- Index.cs
- Source:
- Index.cs
- Source:
- Index.cs
Indicates whether the current Index object is equal to a specified object.
public:
override bool Equals(System::Object ^ value);
public override bool Equals (object? value);
public override bool Equals (object value);
override this.Equals : obj -> bool
Public Overrides Function Equals (value As Object) As Boolean
Parameters
- value
- Object
An object to compare with this instance.
Returns
true
if value
is of type Index and is equal to the current instance; false
otherwise.