Click or drag to resize
SafeHashSetTIntersectWith Method
Modifies the current SafeHashSetT object to contain only elements that are present in that object and in the specified collection.

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

Parameters

other
Type: System.Collections.GenericIEnumerableT
The collection to compare to the current SafeHashSetT object.

Implements

ISetTIntersectWith(IEnumerableT)
Exceptions
ExceptionCondition
ArgumentNullExceptionIf other is null.
See Also