ImmutableSortedDictionary<TKey,TValue>.Builder.Add Metoda

Definicja

Przeciążenia

Add(KeyValuePair<TKey,TValue>)

Dodaje określony element do niezmienialnego posortowanego słownika.

Add(TKey, TValue)

Dodaje element z określonym kluczem i wartością do niezmienialnego posortowanego słownika.

Add(KeyValuePair<TKey,TValue>)

Źródło:
ImmutableSortedDictionary_2.Builder.cs
Źródło:
ImmutableSortedDictionary_2.Builder.cs
Źródło:
ImmutableSortedDictionary_2.Builder.cs

Dodaje określony element do niezmienialnego posortowanego słownika.

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

Parametry

item
KeyValuePair<TKey,TValue>

Obiekt do dodania do słownika.

Implementuje

Dotyczy

Add(TKey, TValue)

Źródło:
ImmutableSortedDictionary_2.Builder.cs
Źródło:
ImmutableSortedDictionary_2.Builder.cs
Źródło:
ImmutableSortedDictionary_2.Builder.cs

Dodaje element z określonym kluczem i wartością do niezmienialnego posortowanego słownika.

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)

Parametry

key
TKey

Klucz elementu do dodania.

value
TValue

Wartość elementu do dodania.

Implementuje

Dotyczy