IHListTAddAllTE Method (Int32, ICollectionTE)Hazelcast .Net Client Class Library
Inserts all of the elements in the specified collection into this list at the specified position (optional operation). Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in this list in the order that they are returned by the specified collection's iterator. The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (Note that this will occur if the specified collection is this list, and it's nonempty.)

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.7
Syntax

bool AddAll<TE>(
	int index,
	ICollection<TE> c
)
where TE : T

Parameters

index
Type: SystemInt32
index at which to insert the first element from the specified collection
c
Type: System.Collections.GenericICollectionTE
collection containing elements to be added to this list

Type Parameters

TE

Return Value

Type: Boolean
true if this list changed as a result of the call
See Also

Reference