Universal Windows Service Class Library

EventArrayList.SetRange Method 

Copies a list of elements over a range of elements in array list.

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

Parameters

index
Null based start index where the elements will be copied.
c
ICollection containing the new elements which should be copied into array list.

Remarks

Copies a list of elments over a range of elements in array list. The list could be contain null values but the parameter 'c' must be a valid object.

Both events (remove and add) are called because the contents of some elemnts would be changed.

See Also

EventArrayList Class | uws.Utilities Namespace | ICollection