Click or drag to resize

DictionaryList<TKey, TValue> .Insert Method

Inserts an item to the DictionaryList<TKey, TValue> at the specified index.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
Syntax
public void Insert(
	int index,
	KeyValuePair<TKey, TValue> item
)
View Source

Parameters

index  Int32
The zero-based index at which item should be inserted.
item  KeyValuePair<TKey, TValue>
The object to insert into the DictionaryList<TKey, TValue>.

Implements

IList<T>.Insert(Int32, T)
See Also