Enumerable.ToDictionary Method
.NET Framework 4.5
Creates a Dictionary<TKey, TValue> from an IEnumerable<T>.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
ToDictionary<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>) | Creates a Dictionary<TKey, TValue> from an IEnumerable<T> according to a specified key selector function. |
|
ToDictionary<TSource, TKey>(IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) | Creates a Dictionary<TKey, TValue> from an IEnumerable<T> according to a specified key selector function and key comparer. |
|
ToDictionary<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) | Creates a Dictionary<TKey, TValue> from an IEnumerable<T> according to specified key selector and element selector functions. |
|
ToDictionary<TSource, TKey, TElement>(IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) | Creates a Dictionary<TKey, TValue> from an IEnumerable<T> according to a specified key selector function, a comparer, and an element selector function. |