Click or drag to resize

MoreEnumerableToDictionaryTKey, TValue Method (IEnumerableValueTuple`2TKey, TValue, IEqualityComparerTKey)

[Missing <summary> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

Namespace:  MoreLinq
Assembly:  MoreLinq (in MoreLinq.dll) Version: 2.4.0
Syntax
public static Dictionary<TKey, TValue> ToDictionary<TKey, TValue>(
	this IEnumerable<ValueTuple<TKey, TValue>> source,
	IEqualityComparer<TKey> comparer
)

Parameters

source
Type: System.Collections.GenericIEnumerableValueTupleTKey, TValue

[Missing <param name="source"/> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

comparer
Type: System.Collections.GenericIEqualityComparerTKey

[Missing <param name="comparer"/> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

Type Parameters

TKey

[Missing <typeparam name="TKey"/> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

TValue

[Missing <typeparam name="TValue"/> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

Return Value

Type: DictionaryTKey, TValue

[Missing <returns> documentation for "M:MoreLinq.MoreEnumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{System.ValueTuple{``0,``1}},System.Collections.Generic.IEqualityComparer{``0})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableValueTupleTKey, 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).
See Also