OrderedDictionary<TKey,TValue>.Insert(Int32, TKey, TValue) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將專案插入集合中指定的索引處。
public:
void Insert(int index, TKey key, TValue value);
public void Insert(int index, TKey key, TValue value);
member this.Insert : int * 'Key * 'Value -> unit
Public Sub Insert (index As Integer, key As TKey, value As TValue)
參數
- index
- Int32
應該插入專案之以零起始的索引。
- key
- TKey
要插入的索引鍵。
- value
- TValue
要插入的值。
例外狀況
索引鍵 null
。
具有相同索引鍵的專案已存在於 OrderedDictionary<TKey,TValue>中。
index
小於 0 或大於 Count。