ImmutableSortedDictionary<TKey,TValue>.Builder.Add 方法

定义

重载

Add(KeyValuePair<TKey,TValue>)

将指定项添加到不可变排序字典。

Add(TKey, TValue)

将具有指定键和值的元素添加到不可变排序字典。

Add(KeyValuePair<TKey,TValue>)

Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs

将指定项添加到不可变排序字典。

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))

参数

item
KeyValuePair<TKey,TValue>

要添加到字典中的对象。

实现

适用于

Add(TKey, TValue)

Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs

将具有指定键和值的元素添加到不可变排序字典。

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

要添加的元素的值。

实现

适用于