Click or drag to resize
IReadOnlyOrderedDictionaryTKey, TValue Interface
Represents an indexed collection of key/value pairs.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public interface IReadOnlyOrderedDictionary<TKey, TValue> : IReadOnlyDictionary<TKey, TValue>, 
	IReadOnlyCollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, 
	IEnumerable

Type Parameters

TKey
The type of keys in the read-only dictionary.
TValue
The type of values in the read-only dictionary.

The IReadOnlyOrderedDictionaryTKey, TValue type exposes the following members.

Methods
  NameDescription
Public methodContainsKey
Determines whether the read-only dictionary contains an element that has the specified key.
(Inherited from IReadOnlyDictionaryTKey, TValue.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableKeyValuePairTKey, TValue.)
Public methodTryGetValue
Gets the value that is associated with the specified key.
(Inherited from IReadOnlyDictionaryTKey, TValue.)
Top
Properties
  NameDescription
Public propertyCount
Gets the number of elements in the collection.
(Inherited from IReadOnlyCollectionKeyValuePairTKey, TValue.)
Public propertyItemTKey
Gets the element that has the specified key in the read-only dictionary.
(Inherited from IReadOnlyDictionaryTKey, TValue.)
Public propertyItemInt32
Gets the element at the specified index.
Public propertyKeys
Gets an enumerable collection that contains the keys in the read-only dictionary.
(Inherited from IReadOnlyDictionaryTKey, TValue.)
Public propertyValues
Gets an enumerable collection that contains the values in the read-only dictionary.
(Inherited from IReadOnlyDictionaryTKey, TValue.)
Top
See Also