ImmutableArray<T>.IStructuralEquatable.Equals(Object, IEqualityComparer) Method
Definition
Determines whether this array is structurally equal to the specified array.
virtual bool System.Collections.IStructuralEquatable.Equals(System::Object ^ other, System::Collections::IEqualityComparer ^ comparer) = System::Collections::IStructuralEquatable::Equals;
bool IStructuralEquatable.Equals (object other, System.Collections.IEqualityComparer comparer);
abstract member System.Collections.IStructuralEquatable.Equals : obj * System.Collections.IEqualityComparer -> bool
override this.System.Collections.IStructuralEquatable.Equals : obj * System.Collections.IEqualityComparer -> bool
Function Equals (other As Object, comparer As IEqualityComparer) As Boolean Implements IStructuralEquatable.Equals
Parameters
- other
- Object
The array to compare with the current instance.
- comparer
- IEqualityComparer
An object that determines whether the current instance and other are structurally equal.
Returns
true
if the two arrays are structurally equal; otherwise, false
.
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the ImmutableArray<T> instance is cast to an IStructuralEquatable interface.