I need to merge 2 ObservableCollection into one and bind it to the Grid and need realtime updates to flow to the Grid. for .e.g.
Ive been investiging the Rx library and have tried to replicate the example from the following video...
I\'m somewhat new to Rx.NET.Is it possible to catch an exception which may be thrown by any of the subscribers?Take the following...
I have a really long Excel file wich I read using EPPlus. For each line I test if it meets certain criteria and if so I add the line (an object representing the line) to a collection. When the file is
Hi I am trying to merge a number of observables to an observable array. Here an example that works in fsi. (sorry that it is lengthy)
I have a class, public class Test { public int Calc(); } which requires all calls to Calc to be performed on the same thread as the one on which Test was created. I need to create Test once (expen
I have been learning about RX and Silverlight and found a blog post showing how to implement a silverlight wcf service using the Observable.FromAsyncPattern in Rx. In the blog post it has a note to Si
I have an IObservable; where a property change has an entity ID and PropertyName.I want to use this to update a database, but if multiple properties change almost simultaneously I only want to do one
I have two asynchronouse methods which take Action callbacks开发者_Go百科. I was wondering if there is an extension in Rx for actions?
I want to subscribe to an observable, but only run an action once until a different IObservable fires. Each time the other IObservable fires, I\'d like to be resubscribed and run my action once. The f