Click or drag to resize

CollectionExtensionsToDictionaryTKey, TValue Method (IEnumerableKeyValuePairTKey, TValue, IEqualityComparerTKey)

Creates a Dictionary{TKey, TValue} from an IEnumerable{KeyValuePair{TKey, TValue}}.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static Dictionary<TKey, TValue> ToDictionary<TKey, TValue>(
	this IEnumerable<KeyValuePair<TKey, TValue>> items,
	IEqualityComparer<TKey>? comparer
)

Parameters

items
Type: System.Collections.GenericIEnumerableKeyValuePairTKey, TValue
The items containing the key-value pairs.
comparer
Type: System.Collections.GenericIEqualityComparerTKey
The comparer.

Type Parameters

TKey
The type of the key.
TValue
The type of the value.

Return Value

Type: DictionaryTKey, TValue
The dictionary

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableKeyValuePairTKey, TValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionAny of the keys is null.
ArgumentExceptionAny of the keys is duplicate.
See Also