Click or drag to resize
PairTFirst, TSecond  Conversion (KeyValuePairTFirst, TSecond to PairTFirst, TSecond)
Converts a KeyValuePair structure into a Pair. The First element gets the Key, and the Second element gets the Value.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public static explicit operator Pair<TFirst, TSecond> (
	KeyValuePair<TFirst, TSecond> keyAndValue
)

Parameters

keyAndValue
Type: System.Collections.GenericKeyValuePairTFirst, TSecond
The KeyValuePair to convert.

Return Value

Type: PairTFirst, TSecond
The Pair created by converted the KeyValuePair into a Pair.
See Also