.NET Framework Class Library
Enumerable..::.ToDictionary Method
|
| Name | Description |
|---|
.gif) .gif) .gif) .gif) | ToDictionary<(Of <(TSource, TKey>)>)(IEnumerable<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>) according to a specified key selector function. |
.gif) .gif) .gif) .gif) | ToDictionary<(Of <(TSource, TKey>)>)(IEnumerable<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>) according to a specified key selector function and key comparer. |
.gif) .gif) .gif) .gif) | ToDictionary<(Of <(TSource, TKey, TElement>)>)(IEnumerable<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>) according to specified key selector and element selector functions. |
.gif) .gif) .gif) .gif) | ToDictionary<(Of <(TSource, TKey, TElement>)>)(IEnumerable<(Of <(TSource>)>), Func<(Of <(TSource, TKey>)>), Func<(Of <(TSource, TElement>)>), IEqualityComparer<(Of <(TKey>)>)) | Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>) according to a specified key selector function, a comparer, and an element selector function. |
Top
Reference