سؤال

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#

هل كانت مفيدة؟

المحلول

نصائح أخرى

Try to use LINQ. The methods Select or SelectMany() will do the trick.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top