IListContract<C>.SetItem(Int32, C) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取代指定之索引處的項目。
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
在指定之索引處要設定的項目。
例外狀況
備註
SetItem方法會取代位於指定索引處的專案。 若要將專案加入 至 IListContract<C>,請使用 Insert 方法。
若要判斷 是否 IListContract<C> 為唯讀,請呼叫 GetIsReadOnly 方法。