Click or drag to resize
ListBaseTInsert Method
This method must be overridden by the derived class to insert a new item at the given index.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public abstract void Insert(
	int index,
	T item
)

Parameters

index
Type: SystemInt32
The index in the list to insert the item at. After the insertion, the inserted item is located at this index. The first item in the list has index 0.
item
Type: T
The item to insert at the given index.

Implements

IListTInsert(Int32, T)
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than Count.
See Also