共用方式為


OrderedDictionary<TKey,TValue>.SetAt 方法

定義

多載

SetAt(Int32, TValue)

設定指定索引處索引鍵的值。

SetAt(Int32, TKey, TValue)

設定指定索引處的索引鍵/值組。

SetAt(Int32, TValue)

設定指定索引處索引鍵的值。

public:
 void SetAt(int index, TValue value);
public void SetAt (int index, TValue value);
member this.SetAt : int * 'Value -> unit
Public Sub SetAt (index As Integer, value As TValue)

參數

index
Int32

要取得或設定之專案之以零起始的索引。

value
TValue

要儲存在指定索引處的值。

適用於

SetAt(Int32, TKey, TValue)

設定指定索引處的索引鍵/值組。

public:
 void SetAt(int index, TKey key, TValue value);
public void SetAt (int index, TKey key, TValue value);
member this.SetAt : int * 'Key * 'Value -> unit
Public Sub SetAt (index As Integer, key As TKey, value As TValue)

參數

index
Int32

要取得或設定之專案之以零起始的索引。

key
TKey

要儲存在指定索引處的索引鍵。

value
TValue

要儲存在指定索引處的值。

例外狀況

適用於