OrderedDictionary<TKey,TValue>.Insert(Int32, TKey, TValue) メソッド

定義

指定したインデックス位置にあるコレクションに項目を挿入します。

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

項目を挿入する位置を示す 0 から始まるインデックス。

key
TKey

挿入するキー。

value
TValue

挿入する値。

例外

キーが null

同じキーを持つ要素が OrderedDictionary<TKey,TValue>に既に存在します。

index が 0 より小さいか、Countより大きいです。

適用対象