Click or drag to resize

CoreUtilsCreatePairsFromSubSetDictionariesTKey, TValue Method

Creates a new set of pairs where the values of a key in both subset1 and subset2 are combined as a pair. Keys which are present only in subset1 or only in subset2 are ignored.

Namespace:  SD.LLBLGen.Pro.Core
Assembly:  SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax
public static List<Pair<TValue, TValue>> CreatePairsFromSubSetDictionaries<TKey, TValue>(
	Dictionary<TKey, TValue> subset1,
	Dictionary<TKey, TValue> subset2
)

Parameters

subset1
Type: System.Collections.GenericDictionaryTKey, TValue
The subset1.
subset2
Type: System.Collections.GenericDictionaryTKey, TValue
The subset2.

Type Parameters

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

Return Value

Type: ListPairTValue, TValue
See Also