OrderedDictionary<TKey, TValue> Class |
Namespace: Ifs.Fnd.Core
public class OrderedDictionary<TKey, TValue> : IOrderedDictionary<TKey, TValue>, IOrderedDictionary, IDictionary, ICollection, IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable
The OrderedDictionary<TKey, TValue> type exposes the following members.
Name | Description | |
---|---|---|
![]() | OrderedDictionary<TKey, TValue>() |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class.
|
![]() | OrderedDictionary<TKey, TValue>(IEqualityComparer<TKey>) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified comparer.
|
![]() | OrderedDictionary<TKey, TValue>(Int32) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified initial capacity.
|
![]() | OrderedDictionary<TKey, TValue>(OrderedDictionary<TKey, TValue>) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class.
|
![]() | OrderedDictionary<TKey, TValue>(Int32, IEqualityComparer<TKey>) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified initial capacity and comparer.
|
Name | Description | |
---|---|---|
![]() | Count |
Gets the number of key/values pairs contained in the OrderedDictionary<TKey,TValue> collection.
|
![]() | IsReadOnly |
Gets a value indicating whether the OrderedDictionary<TKey,TValue> collection is read-only.
|
![]() | Item[Int32] |
Gets or sets the value at the specified index.
|
![]() | Item[TKey] |
Gets or sets the value with the specified key.
|
![]() | Keys |
Gets an ICollection<TKey> object containing the keys in the OrderedDictionary<TKey,TValue>.
|
![]() | Values |
Gets an ICollection<TValue> object containing the values in the OrderedDictionary<TKey,TValue>.
|
Name | Description | |
---|---|---|
![]() | Add |
Adds an entry with the specified key and value into the OrderedDictionary<TKey,TValue> collection with the lowest available index.
|
![]() | Clear |
Removes all elements from the OrderedDictionary<TKey,TValue> collection.
|
![]() | ContainsKey |
Determines whether the OrderedDictionary<TKey,TValue> collection contains a specific key.
|
![]() | IndexOfKey |
Returns the zero-based index of the specified key in the OrderedDictionary<TKey,TValue> |
![]() | Insert |
Inserts a new entry into the OrderedDictionary<TKey,TValue> collection with the specified key and value at the specified index.
|
![]() | Remove |
Removes the entry with the specified key from the OrderedDictionary<TKey,TValue> collection.
|
![]() | RemoveAt |
Removes the entry at the specified index from the OrderedDictionary<TKey,TValue> collection.
|
![]() | TryGetValue |
Gets the value associated with the specified key.
|