Click or drag to resize

OrderedDictionaryTKey, TValueInsert Method

Inserts the specified key/value pair into the OrderedDictionaryTKey, TValue at the specified index as an O(n) operation.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntax
public void Insert(
	int index,
	TKey key,
	TValue value
)
View Source

Parameters

index  Int32
The zero-based index of the key/value pair to insert.
key  TKey
The key of the element to insert.
value  TValue
The value of the element to insert.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
ArgumentExceptionAn element with the same key already exists in the OrderedDictionaryTKey, TValue.
ArgumentOutOfRangeExceptionindex is less than 0.-or-index is greater than Count.
See Also