SynchronizedCollection<T>.RemoveAt(Int32) 方法

定义

从集合中移除指定索引处的项。

public:
 virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

参数

index
Int32

要从集合中检索的元素的从零开始的索引。

实现

例外

指定的 index 小于零或大于集合中的项数。

注解

集合中已移除元素下面的元素将上移以占据空出的位置,并相应地更新它们的索引。

适用于