Dictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.Add Método

Definición

Agrega el valor especificado a la interfaz ICollection<T> con la clave especificada.

 virtual void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System::Collections::Generic::KeyValuePair<TKey, TValue> keyValuePair) = System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<TKey, TValue>>::Add;
void ICollection<KeyValuePair<TKey,TValue>>.Add (System.Collections.Generic.KeyValuePair<TKey,TValue> keyValuePair);
abstract member System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
override this.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
Sub Add (keyValuePair As KeyValuePair(Of TKey, TValue)) Implements ICollection(Of KeyValuePair(Of TKey, TValue)).Add

Parámetros

keyValuePair
KeyValuePair<TKey,TValue>

Estructura KeyValuePair<TKey,TValue> que representa la clave y el valor que se van a agregar a la colección Dictionary<TKey,TValue>.

Implementaciones

Excepciones

La clave de keyValuePair es null.

Ya existe un elemento con la misma clave en Dictionary<TKey,TValue>.

Se aplica a