All C# extension methods for type ienumerable
-
IEnumerable.Chunk
Splits an enumerable into chunks of a specified size.
-
HasItems
Determines whether an IEnumerable contains any items
-
IEnumerable.None
The opposite of Any(). Returns true if the collection is empty, or if no item matches the predicate.
-
ToDictionary()
Converts an IEnumerable<IGrouping<TKey,TValue>> from a GroupBy() clause to a Dictionary<TKey, List<TValue>>.
-
ToDistinctDictionary
Creates an IDictionary<TKey, TValue> from the IEnumerable<TSource> instance based on the key selector and element selector. This is distinct by using the built-in index of the dictionary instance for either adding or updating a keys corresponding value.
-
IsNullOrEmpty
Indicates whether the specified IEnumerable collection is null or empty
-
AnyOfType
Determines if there is an element of a given type inside a collection.
-
Duplicates within an IEnumerable
Duplicates within an IEnumerable