Universal Windows Service Class Library

EventArrayList.Insert Method 

Add new element at given position to array list.

public override void Insert(
   int index,
   object value
);

Parameters

index
Null based index where element should be inserted.
value
Object which should be added to array list. Null is also valid.

Implements

IList.Insert

Remarks

Insert given element at given position index.

See Also

EventArrayList Class | uws.Utilities Namespace