ImmutableArray<T>.IStructuralEquatable.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 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.