-
as seen on Stack Overflow
- Search for 'Stack Overflow'
The System.Reactive.dll adds a class AsyncLock to System.Concurrency.
It has a single instance method, Wait, that takes an Action.
The documentation page I found just tells it it pre-release documentation,
so I ask here: What does this class do?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What is LINQ to events a.k.a RX Framework aka the Reactive Extensions in .NET 4.0 (but also available as backported versions)?
In other words, what is all the stuff in System.Reactive.dll for?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
One of the things that has long bugged me about the FileSystemWatcher is the way it fires multiple events for a single logical change to a file. I know why it happens, but I don't want to have to care - I just want to reparse the file once, not 4-6 times in a row. Ideally, there would be an event…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Looking at the Reactive Extensions for javascript demo on Jeff Van Gogh's blog, I thought I'd give it a try in C#/Winforms, but it doesn't seem to work so well.
I just threw this into the constructor of a form (with the Rx framework installed and referenced):
Observable.Context = SynchronizationContext…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I have a ViewModel that starts loading the Model async in the constructor, and triggers an event when the Model is loaded. I got a test working with the silverlight unit test framework, like this :
bool done = false;
[TestMethod]
[Asynchronous]
public void Test_NoCustomerSelected()
…
>>> More