Click or drag to resize
SafeHashSetTSymmetricExceptWith Method
Modifies the current SafeHashSetT object to contain only elements that are present either in that object or in the specified collection, but not both.

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

Parameters

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

Implements

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