共用方式為


IListContract<C>.RemoveAt(Int32) 方法

定義

移除指定索引中的項目。

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<C> 為唯讀,請呼叫 GetIsReadOnly 方法。

適用於