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

Definição

Adiciona um elemento com a chave e o valor especificados ao SortedDictionary<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)

Parâmetros

key
TKey

A chave do elemento a ser adicionada.

value
TValue

O valor do elemento a ser adicionado. O valor pode ser null para tipos de referência.

Implementações

Exceções

key é null.

Já existe um elemento com a mesma chave no SortedDictionary<TKey,TValue>.

Exemplos

O exemplo de código a seguir cria um vazio SortedDictionary<TKey,TValue> de cadeias de caracteres com chaves de cadeia de caracteres e usa o Add método para adicionar alguns elementos. O exemplo demonstra que o Add método lança um ArgumentException ao tentar adicionar uma chave duplicada.

Este exemplo de código faz parte de um exemplo maior fornecido para a SortedDictionary<TKey,TValue> classe .

// Create a new sorted dictionary of strings, with string
// keys.
SortedDictionary<string, string> openWith =
    new SortedDictionary<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 sorted dictionary of strings, with string 
' keys. 
Dim openWith As New SortedDictionary(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

Comentários

Você também pode usar a Item[] propriedade para adicionar novos elementos definindo o valor de uma chave que não existe no SortedDictionary<TKey,TValue>; por exemplo, myCollection["myNonexistentKey"] = myValue (no Visual Basic, myCollection("myNonexistantKey") = myValue). No entanto, se a chave especificada já existir no , definir SortedDictionary<TKey,TValue>a Item[] propriedade substituirá o valor antigo. Por outro lado, o Add método gerará uma exceção se já existir um elemento com a chave especificada.

Uma chave não pode ser null, mas um valor pode ser , se o tipo TValue de valor for um tipo de referência.

Este método é uma operação O(log n), em que n é Count.

Aplica-se a

Confira também