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.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
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