Click or drag to resize
AlgorithmsEqualCollections Method
Overload List
  NameDescription
Public methodStatic memberEqualCollectionsT(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.
Public methodStatic memberEqualCollectionsT(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.
Public methodStatic memberEqualCollectionsT(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".
Top
See Also