ToDictionaryExtension Class
ToDictionary extension.
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 4.0.0+092a40d82a1b280568ffa006d9a210bdec0792cd
public static class ToDictionaryExtension
<ExtensionAttribute>
Public NotInheritable Class ToDictionaryExtension
[ExtensionAttribute]
public ref class ToDictionaryExtension abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type ToDictionaryExtension = class end
- Inheritance
 - Object    ToDictionaryExtension
 
 | ToDictionaryTKey, TValue(IEnumerableKeyValuePairTKey, TValue) | 
            Creates a DictionaryTKey, TValue from a sequence of
            KeyValuePairTKey, TValue elements.
             | 
| ToDictionaryTKey, TValue(IEnumerableValueTupleTKey, TValue) | 
            Creates a DictionaryTKey, TValue from a sequence of
            tuples of 2 where the first item is the key and the second the
            value.
             | 
| ToDictionaryTKey, TValue(IEnumerableKeyValuePairTKey, TValue, IEqualityComparerTKey) | 
            Creates a DictionaryTKey, TValue from a sequence of
            KeyValuePairTKey, TValue elements. An additional
            parameter specifies a comparer for keys.
             | 
| ToDictionaryTKey, TValue(IEnumerableValueTupleTKey, TValue, IEqualityComparerTKey) | 
            Creates a DictionaryTKey, TValue from a sequence of
            tuples of 2 where the first item is the key and the second the
            value. An additional parameter specifies a comparer for keys.
             |