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.275-beta+0199f33448f02143c26eb94d77293bb9443152f1
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