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

Add all of one enumerable set into a collection.

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

Syntax

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

Parameters

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

Type Parameters

T