共用方式為


IListContract<C>.GetItem(Int32) 方法

定義

傳回位於指定之索引處的元素。

public:
 C GetItem(int index);
public C GetItem (int index);
abstract member GetItem : int -> 'C
Public Function GetItem (index As Integer) As C

參數

index
Int32

要取得之項目的以零為起始的索引。

傳回

C

在指定索引上的項目。

例外狀況

index 小於零。

-或-

index 等於或大於 GetCount() 的傳回值。

備註

方法 GetItem 不會移除位於指定索引處的專案。 若要從 IListContract<C>移除 專案,請使用 RemoveAt 方法。

適用於