I have the following example code using MEF:
public interface IFoo<T> {}
public class Foo<T> : IFoo<T> {}
[Export(typeof(IFoo<String>))]
public class Foo : Foo<String> {}
public class Bar<T>
{
[Import]
private readonly IFoo<T> foo;
}
static void Main()
{
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
var container = new CompositionContainer(catalog);
container.ComposeParts();
var bar = new Bar<String>();
//bar.foo would be null
}
This doesn't seem to work - the foo field is null. Is this because its type isn't seen by MEF as IFoo<String> ?
Foo<String> : IFoo<String>. This declares a generic type confusingly namedString, it doesn't use the actual string class. What you've got is equivalent toFoo<T> : IFoo<T>. If you want Foo to not be generic, to always be aIFoo<System.String>, you'll need to doFoo : IFoo<String>. If you want class Foo to be generic, I'd rename your generic type to<T>, to make it less confusing. – David Yaw Feb 23 '11 at 15:02