Click or drag to resize

IEnumerableExtensionMethods Methods

The IEnumerableExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberSetEqual<T>(IEnumerable<T>, IEnumerable<T>)
Checks whether the enumerable to compare with is equal to the source enumerable, element wise. If elements are in a different order, the method will still return true. This is different from SequenceEqual which does take order into account
Public methodStatic memberSetEqual<T>(IEnumerable<T>, IEnumerable<T>, IEqualityComparer<T>)
Checks whether the enumerable to compare with is equal to the source enumerable, element wise. If elements are in a different order, the method will still return true. This is different from SequenceEqual which does take order into account
Public methodStatic memberToHashSet<TDestination>
Creates a new hashset and adds the source to it.
Public methodStatic memberToReadOnlyCollection<TDestination>
Converts the enumerable to a ReadOnlyCollection.
Top
See Also