Click or drag to resize
SetTRemoveMany Method
Removes all the items in collection from the set.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public int RemoveMany(
	IEnumerable<T> collection
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
A collection of items to remove from the set.

Return Value

Type: Int32
The number of items removed from the set.
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is null.
Remarks

Equality between items is determined by the comparison instance or delegate used to create the set.

Removing the collection takes time O(M), where M is the number of items in collection.

See Also