Version:
EnumerableExtensions Class
Contains extension methods for System.Collections.Generic.IEnumerable`1.
Inheritance Hierarchy
- object
- Inedo.EnumerableExtensions
Syntax
public
class
EnumerableExtensions
Methods
|
Name |
Description |
|
ToHashSet<TSource>(System.Collections.Generic.IEnumerable<TSource> source)
|
Creates a hash set from the specified source.
|
|
ToHashSet<TSource>(System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource> comparer)
|
Creates a hash set from the specified source using the specified equality comparer.
|
|
ToSortedList<TSource, TKey>(System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector)
|
|
|
ToSortedList<TSource, TKey>(System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IComparer<TKey> comparer)
|
|
|
ToSortedList<TSource, TKey, TValue>(System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Func<TSource, TValue> valueSelector)
|
|
|
ToSortedList<TSource, TKey, TValue>(System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Func<TSource, TValue> valueSelector, System.Collections.Generic.IComparer<TKey> comparer)
|
|
|
ToSortedSet<TSource>(System.Collections.Generic.IEnumerable<TSource> source)
|
Creates a sorted set from the specified source.
|
|
ToSortedSet<TSource>(System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource> comparer)
|
Creates a sorted set from the specified source using the specified equality comparer.
|