Click or drag to resize

FileBackedHashSet<T> .SetEquals Method

Determines whether the current set and the specified collection contain the same elements.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntax
public bool SetEquals(
	IEnumerable<T> other
)
View Source

Parameters

other  IEnumerable<T>
The collection to compare to the current set.

Return Value

Boolean
true if the current set is equal to other; otherwise, false.

Implements

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