ImmutableSortedDictionary<TKey,TValue>.SetItems 方法

定义

在不可变排序字典中设置指定的键/值对,可能的设置方法是覆盖键的现有值。

public:
 System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ SetItems(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ items);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> SetItems (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>> items);
member this.SetItems : seq<System.Collections.Generic.KeyValuePair<'Key, 'Value>> -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function SetItems (items As IEnumerable(Of KeyValuePair(Of TKey, TValue))) As ImmutableSortedDictionary(Of TKey, TValue)

参数

items
IEnumerable<KeyValuePair<TKey,TValue>>

要在字典中设置的键/值对。 如果字典中已存在任何键,则此方法将覆盖这些键的先前值。

返回

一个不可变字典,其中包含指定的键/值对。

适用于