Table of Contents

Delegate ValueSelector<TKey, TValue>

Namespace
Garyon.Objects
Assembly
Garyon.dll

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

key TKey

The key to transform into a value.

Returns

TValue

The transformed value.

Type Parameters

TKey

The type of the key.

TValue

The type of the value.

Extension Methods