共用方式為


IListContract<T>.GetItem(Int32) 方法

定義

傳回 IListContract<T> 集合之指定索引處的項目。

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

參數

index
Int32

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

傳回

T

在指定之索引處的項目。

例外狀況

index 小於零。

-或-

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

備註

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

適用於