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
要加入的項目的值。