| ObservableIndexerTKey, TValue Class |
A Dictionary like implementation that populates it's content on demand, i.e. calling indexer[key] will never return null.
Inheritance Hierarchy Namespace: TomsToolbox.ObservableCollectionsAssembly: TomsToolbox.ObservableCollections (in TomsToolbox.ObservableCollections.dll) Version: 2.21.0+44d18b541fc9419ec3c549350a832394661b2a4d
XMLNS for XAML: Not mapped to an xmlns.
Syntax public sealed class ObservableIndexer<TKey, TValue> : ReadOnlyObservableCollectionAdapter<KeyValuePair<TKey, TValue>, ObservableCollection<KeyValuePair<TKey, TValue>>>
Public NotInheritable Class ObservableIndexer(Of TKey, TValue)
Inherits ReadOnlyObservableCollectionAdapter(Of KeyValuePair(Of TKey, TValue), ObservableCollection(Of KeyValuePair(Of TKey, TValue)))
Type Parameters
- TKey
- The type of the key.
- TValue
- The type of the value.
The ObservableIndexerTKey, TValue type exposes the following members.
Constructors Properties | Name | Description |
---|
| Comparer |
Gets the IEqualityComparerT that is used to determine equality of keys for the dictionary.
|
| Item |
Gets the value associated with the specified key.
|
TopMethods Events Extension Methods | Name | Description |
---|
| SafeCastT |
Performs a cast from object to T, avoiding possible null violations if T is a value type.
(Defined by ObjectExtensions) |
TopSee Also