ImmutableDictionary<TKey, TValue>::SetItems Method (IEnumerable<KeyValuePair<TKey, TValue>>^)

 

Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

public:
ImmutableDictionary<TKey, TValue>^ SetItems(
	IEnumerable<KeyValuePair<TKey, TValue>>^ items
)

Parameters

items
Type: System.Collections.Generic::IEnumerable<KeyValuePair<TKey, TValue>>^

The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.

Return Value

Type: System.Collections.Immutable::ImmutableDictionary<TKey, TValue>^

A new immutable dictionary that contains the specified key/value pairs.

Return to top
Show: