AlgorithmsEqualCollections Method |
Name | Description | |
---|---|---|
![]() ![]() | EqualCollectionsT(IEnumerableT, IEnumerableT) |
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.
|
![]() ![]() | EqualCollectionsT(IEnumerableT, IEnumerableT, IEqualityComparerT) |
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.
|
![]() ![]() | EqualCollectionsT(IEnumerableT, IEnumerableT, BinaryPredicateT) |
Determines if the two collections contain "equal" items in the same order. The passed
BinaryPredicate is used to determine if two items are "equal".
|