Click or drag to resize

FileBackedHashSet<T> .ExceptWith Method

Removes all elements in the specified collection from the current set.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.241-beta+912389e96d98840d2a999d490420db618dcbe4c6
Syntax
public void ExceptWith(
	IEnumerable<T> other
)
View Source

Parameters

other  IEnumerable<T>
The collection of items to remove from the set.

Implements

ISet<T>.ExceptWith(IEnumerable<T>)
Exceptions
ExceptionCondition
ArgumentNullExceptionother is null.
NotSupportedExceptionThe FileBackedHashSet<T> is read-only.
See Also