IMultiMap<TKey,TValue>.AddRange Method

Overloads

AddRange(TKey, array of TValue)

Adds multiple elements with the specified values accociated with the specified key.

AddRange(TKey, IEnumerable<TValue>)

Adds multiple elements with the specified values accociated with the specified key.

AddRange(TKey, array of TValue)

Adds multiple elements with the specified values accociated with the specified key.

Delphi
procedure AddRange(const key: TKey; const values: array of TValue)

Parameters

key
TKey

The key of the elements to add.

values
array of TValue

AddRange(TKey, IEnumerable<TValue>)

Adds multiple elements with the specified values accociated with the specified key.

Delphi
procedure AddRange(const key: TKey; const values: IEnumerable<TValue>)

Parameters

key
TKey

The key of the elements to add.

values
IEnumerable<TValue>

Exceptions

values is nil .