Collection.IList.RemoveAt(Int32) 方法

定义

移除指定索引处的 Collection 对象项。

 virtual void IListRemoveAt(int index) = System::Collections::IList::RemoveAt;
void IList.RemoveAt (int index);
abstract member IListRemoveAt : int -> unit
override this.IListRemoveAt : int -> unit
Sub IListRemoveAt (index As Integer) Implements IList.RemoveAt

参数

index
Int32

要移除的项的从零开始的索引。

例外

index 不是 Collection 对象中的有效索引。

Collection 对象是只读的。

- 或 -

Collection 对象具有固定大小。

注解

在由连续的元素组成的集合(如列表)中,已移除元素下面的元素将上移以占据空出的位置。 如果集合具有索引,则移动的元素的索引也将更新。 此行为不适用于元素按概念划分为不同存储桶的集合,如哈希表。

适用于

另请参阅