If you want to see real F# programming showing off the power of function composition, I found some great blog posts earlier tonight. They are actually by Dustin Campbell on his blog: http://diditwith.net/Catego... I think these posts are some of the best F# posts I have seen out there so far. I love them because they show off the real beauty and power of F#, and don't do the whole “here’s how F# can behave like other languages” treatment that I’ve seen in so many...
How would you like to use the following way to configure dependencies in MEF? A fluent interface with POCO support (no attributes necessary)? Yup. var resolver = new FluentResolver(); resolver.Register<HelloW... And<HelloGreeting>().... And<ConsoleOutputter>... var domain = new CompositionContainer(resolv... // HelloWorld has dependencies on IGreeting and IOutputter var helloWorld = domain.Resolve<HelloWorl... helloWorld.SaySomething();...