ImmutableSortedDictionary<TKey,TValue>.Builder.Add 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Add(KeyValuePair<TKey,TValue>) |
将指定项添加到不可变排序字典。 |
Add(TKey, TValue) |
将具有指定键和值的元素添加到不可变排序字典。 |
Add(KeyValuePair<TKey,TValue>)
将指定项添加到不可变排序字典。
public:
virtual void Add(System::Collections::Generic::KeyValuePair<TKey, TValue> item);
public void Add (System.Collections.Generic.KeyValuePair<TKey,TValue> item);
abstract member Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
Public Sub Add (item As KeyValuePair(Of TKey, TValue))
参数
要添加到字典中的对象。
实现
适用于
Add(TKey, TValue)
将具有指定键和值的元素添加到不可变排序字典。
public:
virtual void Add(TKey key, TValue value);
public void Add (TKey key, TValue value);
abstract member Add : 'Key * 'Value -> unit
override this.Add : 'Key * 'Value -> unit
Public Sub Add (key As TKey, value As TValue)
参数
- key
- TKey
要添加的元素的键。
- value
- TValue
要添加的元素的值。