Click or drag to resize
SafeHashSetTUnionWith Method
Modifies the current SafeHashSetT object to contain all elements that are present in itself, the specified collection, or both.

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

Parameters

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

Implements

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