ImmutableSortedDictionary<TKey,TValue>.SetItem(TKey, TValue) 方法

定义

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

public:
 System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ SetItem(TKey key, TValue value);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> SetItem (TKey key, TValue value);
member this.SetItem : 'Key * 'Value -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function SetItem (key As TKey, value As TValue) As ImmutableSortedDictionary(Of TKey, TValue)

参数

key
TKey

要添加的条目的键。

value
TValue

要设置的键值。

返回

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

注解

如果字典中已存在指定的键/值对,则此方法返回字典的现有实例。 如果键已存在,但具有不同的值,此方法将返回字典的新实例,其中包含覆盖的值。

适用于