I've started to play around with the rx
version of C# recently and am wondering how it's possible to solve the following problem:
I'm using refit to get a list of items from a server via:
[Get("/items")]
IObservable<List<Item>> GetItems();
I would like to process each item afterwards, but I didn't find out how to do that. I know in RxJava there is an operator called flatMapIterable()
which allows me to process each item, but I didn't find something similar for C#.
Thanks