Delegate ValueSelector<TKey, TValue>
Represents a value selector function, which transforms a provided key into a value, within a KeyValuePair<TKey, TValue>.
public delegate TValue ValueSelector<TKey, TValue>(TKey key)
Parameters
keyTKeyThe key to transform into a value.
Returns
- TValue
The transformed value.
Type Parameters
TKeyThe type of the key.
TValueThe type of the value.
- Extension Methods