Reactive Framework Extensions Generator
You probably know already that the Reactive Framework Extensions (Rx) is a new library on top of .NET 4.0 and Silverlight that allows developers to leverage the expressiveness and power of LINQ for .NET events. It brings an entirely new paradigm for doing event-driven apps, and therefore shines in WPF/Silverlight scenarios.
Read more about Rx at the team blog, the project home page and Matthew excelent blog series.
Even with the general availability of the
bits for VS2010 beta2 at DevLabs, there's still quite a bit of work you need to do in order
to leverage the extensions. Specifically, you need to turn
your events into
IObservables
that can then use the Rx extensions for querying and
subscribing. This is a lot of repetitive and boring code
that can be easily automated.
...