Click or drag to resize

IOrderedDictionaryTKey, TValue Interface

Represents a generic collection of key/value pairs that are ordered independently of the key and value.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public interface IOrderedDictionary<TKey, TValue> : IOrderedDictionary, 
	IDictionary, ICollection, IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, 
	IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable

Type Parameters

TKey
The type of the keys in the dictionary
TValue
The type of the values in the dictionary

The IOrderedDictionaryTKey, TValue type exposes the following members.

Properties
  NameDescription
Public propertyItem
Gets or sets the value at the specified index.
Top
Methods
  NameDescription
Public methodAdd
Adds an entry with the specified key and value into the IOrderedDictionary<TKey,TValue> collection with the lowest available index.
Public methodInsert
Inserts a new entry into the IOrderedDictionary<TKey,TValue> collection with the specified key and value at the specified index.
Top
See Also