Table of Contents

Delegate KeySelector<TKey, TValue>

Namespace
Garyon.Objects
Assembly
Garyon.dll

Represents a key selector function, which transforms a provided value into a key, within a KeyValuePair<TKey, TValue>.

public delegate TKey KeySelector<TKey, TValue>(TValue value)

Parameters

value TValue

The value to transform into a key.

Returns

TKey

The transformed key.

Type Parameters

TKey

The type of the key.

TValue

The type of the value.

Extension Methods