ObservableCollections icon indicating copy to clipboard operation
ObservableCollections copied to clipboard

High performance observable collections and synchronized views, for WPF, Blazor, Unity.

Results 22 ObservableCollections issues
Sort by recently updated
recently updated
newest added

Hi there, First let me thank you for the massive and impressive work you did with this library! Observable collections are really something that should get more love in the...

Hi, because filter is attached to the view after creation it is not run for the elements that already in the collection when the view is being created. This breaks...

Hi, I'm trying to implement a looping scroll view in Unity with an ObservableRingBuffer to recycle views and an ObservableList to maintain the data. Something like this: ` protected internal...

I am getting an exception with the code below. ``` using ObservableCollections; var seq1 = Enumerable.Range(0, 1); var seq2 = Enumerable.Range(0, 1); var zippedSeq = seq1.Zip(seq2, (num1, num2) => (num1,...

I need an `ObservableLookup` which implements `ILookup` interface? Can I contribute it or will you implement it?

IndexOutOfRangeException was thrown in some cases when executing `ObservableHashSet.AddRange`. ```csharp static IEnumerable Range(int count) { foreach (var i in Enumerable.Range(0, count)) { yield return i; } } var set =...

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies

I am currently facing a type conversion issue where I am unable to cast `ObservableList` to `IObservableCollection`. Below is the relevant code snippet that demonstrates the issue: ```cs using ObservableCollections;...

I'm interested in integrating ObservableCollection interfaces with QuikGraph to support the use of a directed graph as a model with MVVM architecture, but the complexity of creating an `ISynchronizedView` or...

- `SerializableObservableList` - `SerializableObservableDictionary` - `SerializableObservableHashSet` - `SerializableObservableQueue` - `SerializableObservableStack` - `SerializableObservableRingBuffer` - `SerializableObservableFixedSizeRingBuffer`