共用方式為


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() 方法的傳回值。

IListContract<T> 集合是唯讀的。

備註

呼叫 RemoveAt之後,移除專案後面的專案會移動以佔用空空的地點。 也會更新移動之專案的索引。

若要判斷集合是否 IListContract<T> 為唯讀,請呼叫 GetIsReadOnly 方法。

適用於