Index.Equals Method

Definition

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.

Applies to