views:

298

answers:

2

IObservable and IObserver would be quite handy right now for something I'm working on.

Is there a similar set of interfaces and classes available for .NET 3.5?

Or must I wait for .NET 4.0 before I can use them?

+3  A: 

This blog post -- Rebasing System.Reactive to the .NET CLR -- explains how you can get the .dll from Silverlight Toolkit to work with .NET 3.5. Don't miss the update at the end (and the comments).

Alexey Romanov
A: 

I did the re basing and created a small WPF drawing app. Here is the source code

LINQ to Events – More on .NET Reactive Extensions (Rx) and a .NET 3.5 WPF Demo

amazedsaint