In this post I assume you have read my first post on this subject. You can find the first post here . In the first part of this blog post, I explained briefly what MEF is and I showed how you can extend MEF with a custom ExportProvider, so that instead of configuring your exports with attributes, you...
MEF is kind of a dependency injection framework for .Net, I deliberately say “kind of”, because MEF is much more. To get an idea about what MEF does for you, take a look at the code below: 1: using System; 2: using System.ComponentModel.Composition.Hosting; 3: using InterfaceLibrary; 4: using...