OrderedDictionary TKey, TValue  Insert Method .net Access Provider Documentation
Inserts a new entry into the OrderedDictionary<TKey,TValue> collection with the specified key and value at the specified index.

Namespace: Ifs.Fnd.Core
Assembly: Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.0.0.0 (4.80.18.0)
Syntax

public void Insert(
	int index,
	TKey key,
	TValue value
)

Parameters

index
Type: OnlineSystem Int32
The zero-based index at which the element should be inserted.
key
Type: TKey
The key of the entry to add.
value
Type: TValue
The value of the entry to add. The value can be if the type of the values in the dictionary is a reference type.

Implements

IOrderedDictionary TKey, TValue  Insert(Int32, TKey, TValue)
Exceptions

See Also