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 方法。

适用于