Click or drag to resize

RankedDictionaryTKey, TValueRemoveAll Method

Removes all elements with keys in the supplied collection from the dictionary.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public int RemoveAll(
	IEnumerable<TKey> other
)

Parameters

other
Type: System.Collections.GenericIEnumerableTKey
The keys of the elements to remove.

Return Value

Type: Int32
The number of elements removed from the dictionary.
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen other is null.
See Also