Reputation: 2662
I have
IEnumerable<IObservable<Tourn>> collectionOfObservables
but i want
IObservable<Tourn> observableTourn
and I want all Subscribers of observableTourn to fire whenever any of the underlying observables change? need this in C#
Upvotes: 1
Views: 296
Reputation: 387
Try to use LINQ. The methods Select
or SelectMany()
will do the trick.
Upvotes: -1