ConcurrentDictionary<TKey,TValue>.ICollection<KeyValuePair<TKey,TValue>>.Remove Metodo

Definizione

Rimuove la coppia chiave/valore specificata dalla raccolta.

 virtual bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System::Collections::Generic::KeyValuePair<TKey, TValue> keyValuePair) = System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<TKey, TValue>>::Remove;
bool ICollection<KeyValuePair<TKey,TValue>>.Remove (System.Collections.Generic.KeyValuePair<TKey,TValue> keyValuePair);
abstract member System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
override this.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
Function Remove (keyValuePair As KeyValuePair(Of TKey, TValue)) As Boolean Implements ICollection(Of KeyValuePair(Of TKey, TValue)).Remove

Parametri

keyValuePair
KeyValuePair<TKey,TValue>

Oggetto KeyValuePair<TKey,TValue> da rimuovere.

Restituisce

true se l'elemento viene rimosso correttamente; in caso contrario, false. Questo metodo restituisce false anche se l'oggetto key non è stato trovato nell'oggetto ICollection<T> originale.

Implementazioni

Eccezioni

La proprietà Key di keyValuePair è null.

Si applica a

Vedi anche