[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes all items in itemEnum from the targetCollection

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Sub RemoveAll(Of T) ( _
	targetCollection As ICollection(Of T), _
	itemEnum As IEnumerable(Of T) _
)
C#
public static void RemoveAll<T> (
	ICollection<T> targetCollection,
	IEnumerable<T> itemEnum
)
Visual C++
public:
generic<typename T>
static void RemoveAll (
	ICollection<T>^ targetCollection, 
	IEnumerable<T>^ itemEnum
)

Parameters

targetCollection
System.Collections.Generic.ICollection<(Of T>)
itemEnum
System.Collections.Generic.IEnumerable<(Of T>)

Type Parameters

T