Overview of ObservableCollections
masterObservableCollections is a high-performance collection library providing thread-safe, generic observable data structures. Unlike the standard .NET ObservableCollection<T>, it uses generics to avoid boxing and allocations, supports range operations (like AddRange), and provides a SynchronizedView mechanism to separate Model from View (ViewModel).
Supported collection types include:
ObservableList<T>ObservableDictionary<TKey, TValue>ObservableHashSet<T>ObservableQueue<T>ObservableStack<T>ObservableRingBuffer<T>ObservableFixedSizeRingBuffer<T>