Hi I'm starting to use ReactiveX c#, all sounds good, except for a concept.
I dunno how to make a reactive array ( or collection or list)
I'd like to have something like ObservableCollection, but with concept of reactive. I would mean that no one of members of array is reactive, but is the array itself that is reactive, just like Observable collection.
I don't understand how can make this possible if all in a reactive is just a stream...
So the question is what's interface or object I should use to get a reactive array?
Thanks