In This Topic
Compares two collection, element by elements.
Syntax
'Declaration
Public Shared Function Compare( _
ByVal As IEnumerator, _
ByVal As IEnumerator _
) As System.Boolean
public static System.bool Compare(
IEnumerator ,
IEnumerator
)
Parameters
- leftIt
- A "from" enumerator.
- rightIt
- A "to" enumerator.
Return Value
true
if lists are identical; otherwise, false
.
See Also