Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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:
© 2017 Microsoft