OrderedDictionaryTKey, 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 OrderedDictionaryTKey, TValue type exposes the following members.
| Name | Description | |
|---|---|---|
| OrderedDictionaryTKey, TValue |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class.
| |
| OrderedDictionaryTKey, TValue(IEqualityComparerTKey) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified comparer.
| |
| OrderedDictionaryTKey, TValue(Int32) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class using the specified initial capacity.
| |
| OrderedDictionaryTKey, TValue(OrderedDictionaryTKey, TValue) |
Initializes a new instance of the OrderedDictionary<TKey,TValue> class.
| |
| OrderedDictionaryTKey, TValue(Int32, IEqualityComparerTKey) |
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.
| |
| ItemInt32 |
Gets or sets the value at the specified index.
| |
| ItemTKey |
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.
|