Click or drag to resize
SafeHashSet<T>.IsSubsetOf Method

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public bool IsSubsetOf(
	IEnumerable<T> other
)

Parameters

other
Type: System.Collections.Generic.IEnumerable<T>
The collection to compare to the current SafeHashSet< T> object.

Return Value

Type: Boolean

Implements

ISet<T>.IsSubsetOf(IEnumerable<T>)
Exceptions
ExceptionCondition
ArgumentNullExceptionIf other is null.
See Also