EqualCollections Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Overload List

NameDescription
Public methodStatic memberEqualCollections<(Of <T>)>(IEnumerable<(Of <T>)>, IEnumerable<(Of <T>)>)
Determines if the two collections contain equal items in the same order. The two collections do not need to be of the same type; it is permissible to compare an array and an OrderedBag, for instance.
Public methodStatic memberEqualCollections<(Of <T>)>(IEnumerable<(Of <T>)>, IEnumerable<(Of <T>)>, IEqualityComparer<(Of <T>)>)
Determines if the two collections contain equal items in the same order. The passed instance of IEqualityComparer<T> is used for determining if two items are equal.
Public methodStatic memberEqualCollections<(Of <T>)>(IEnumerable<(Of <T>)>, IEnumerable<(Of <T>)>, BinaryPredicate<(Of <T>)>)
Determines if the two collections contain "equal" items in the same order. The passed BinaryPredicate is used to determine if two items are "equal".

See Also