An Archived Managed World

This blog has moved to http://www.managed-world.com/blog

  Home  |   Contact  |   Syndication    |   Login
  473 Posts | 0 Stories | 429 Comments | 1288 Trackbacks

News

Twitter












Tag Cloud


Archives

Post Categories

Blog Roll

July 2008 Entries

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...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

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();...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati