IListContract<C>.SetItem(Int32, C) 方法

定义

替换指定索引处的元素。

public:
 void SetItem(int index, C value);
public void SetItem (int index, C value);
abstract member SetItem : int * 'C -> unit
Public Sub SetItem (index As Integer, value As C)

参数

index
Int32

从零开始的索引,在此对元素进行设置。

value
C

要在指定索引处设置的元素。

例外

index 小于零。

- 或 -

index 等于或大于 GetCount() 的返回值。

注解

方法 SetItem 替换指定索引处的 元素。 若要将 元素添加到 , IListContract<C>请使用 Insert 方法。

若要确定 是否 IListContract<C> 为只读,请调用 GetIsReadOnly 方法。

适用于