IListContract<T>.RemoveAt(Int32) 方法

定义

移除 IListContract<T> 集合中指定索引处的项。

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

参数

index
Int32

要移除的项的索引。

例外

index 小于零。

- 或 -

index 等于或大于 GetCount() 方法的返回值。

注解

调用 RemoveAt后,删除项后面的项将移动以占用空位。 移动的项的索引也会更新。

若要确定集合 IListContract<T> 是否为只读,请调用 GetIsReadOnly 方法。

适用于