Click or drag to resize
BigListTRemoveAt Method
Removes the item at the given index in the BigList. All items at indexes greater than index move down one index.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public override sealed void RemoveAt(
	int index
)

Parameters

index
Type: SystemInt32
The index in the list to remove the item at. The first item in the list has index 0.

Implements

IListTRemoveAt(Int32)
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.
Remarks
The amount of time to delete an item in the BigList is O(log N), where N is the number of items in the list.
See Also