Dictionary<TKey,TValue>.Add(TKey, TValue) Método

Definición

Agrega la clave y el valor especificados al diccionario.

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)

Parámetros

key
TKey

Clave del elemento que se va a agregar.

value
TValue

Valor del elemento que se va a agregar. El valor puede ser null para los tipos de referencia.

Implementaciones

Excepciones

key es null.

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

Ejemplos

En el ejemplo de código siguiente se crea un vacío Dictionary<TKey,TValue> de cadenas con claves de cadena y se usa el Add método para agregar algunos elementos. En el ejemplo se muestra que el Add método produce un ArgumentException al intentar agregar una clave duplicada.

Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase Dictionary<TKey,TValue>.

// Create a new dictionary of strings, with string keys.
//
Dictionary<String^, String^>^ openWith =
    gcnew Dictionary<String^, String^>();

// Add some elements to the dictionary. There are no
// duplicate keys, but some of the values are duplicates.
openWith->Add("txt", "notepad.exe");
openWith->Add("bmp", "paint.exe");
openWith->Add("dib", "paint.exe");
openWith->Add("rtf", "wordpad.exe");

// The Add method throws an exception if the new key is
// already in the dictionary.
try
{
    openWith->Add("txt", "winword.exe");
}
catch (ArgumentException^)
{
    Console::WriteLine("An element with Key = \"txt\" already exists.");
}
// Create a new dictionary of strings, with string keys.
//
Dictionary<string, string> openWith =
    new Dictionary<string, string>();

// Add some elements to the dictionary. There are no
// duplicate keys, but some of the values are duplicates.
openWith.Add("txt", "notepad.exe");
openWith.Add("bmp", "paint.exe");
openWith.Add("dib", "paint.exe");
openWith.Add("rtf", "wordpad.exe");

// The Add method throws an exception if the new key is
// already in the dictionary.
try
{
    openWith.Add("txt", "winword.exe");
}
catch (ArgumentException)
{
    Console.WriteLine("An element with Key = \"txt\" already exists.");
}
' Create a new dictionary of strings, with string keys.
'
Dim openWith As New Dictionary(Of String, String)

' Add some elements to the dictionary. There are no 
' duplicate keys, but some of the values are duplicates.
openWith.Add("txt", "notepad.exe")
openWith.Add("bmp", "paint.exe")
openWith.Add("dib", "paint.exe")
openWith.Add("rtf", "wordpad.exe")

' The Add method throws an exception if the new key is 
' already in the dictionary.
Try
    openWith.Add("txt", "winword.exe")
Catch 
    Console.WriteLine("An element with Key = ""txt"" already exists.")
End Try

Comentarios

También puede usar la Item[] propiedad para agregar nuevos elementos estableciendo el valor de una clave que no existe en Dictionary<TKey,TValue>; por ejemplo, myCollection[myKey] = myValue (en Visual Basic, myCollection(myKey) = myValue). Sin embargo, si la clave especificada ya existe en Dictionary<TKey,TValue>, al establecer la propiedad se Item[] sobrescribe el valor anterior. En cambio, el Add método produce una excepción si ya existe un valor con la clave especificada.

Si el Count valor de propiedad ya es igual a la capacidad, la capacidad de se incrementa mediante la reasignación automática de Dictionary<TKey,TValue> la matriz interna y los elementos existentes se copian en la nueva matriz antes de agregar el nuevo elemento.

Una clave no puede ser null, pero un valor puede ser , si TValue es un tipo de referencia.

Si Count es menor que la capacidad, este método se aproxima a una operación de O(1). Si se debe aumentar la capacidad para acomodar el nuevo elemento, este método se convierte en una operación O(n), donde n es Count.

Se aplica a

Consulte también