OrderedDictionary<TKey,TValue>.SetAt 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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
要儲存在指定索引處的值。