Universal Windows Service Class Library

EventArrayList.InsertRange Method 

Add new list of elements at given position to array list.

public override void InsertRange(
   int index,
   ICollection c
);

Parameters

index
Null based index where new elements should be inserted.
c
ICollection containing new elements.

Remarks

Add new list of elements at given position to array list. The list could be contain null values but the parameter 'c' must be a valid object.

See Also

EventArrayList Class | uws.Utilities Namespace | ICollection