I have a static class in my solution which is used to work with various assemblies. I want to link them through MEF, so I made a field in a class.
[Import(typeof(A))]
static private A _a1;
Then I have a method to which I pass assembly name as an argument:
public static A LoadPackage(string filePath)
{
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new AssemblyCatalog(filePath));
var _container = new CompositionContainer(catalog);
???
}
So is there a way now to import type from assembly specified by filepath?
I can't do:
_container.ComposeParts(this);
since class is `static and neither can I do this
_container.ComposeParts(_a1);
(which might be completely wrong to begin with) since A
doesn't have any constructors(so _a1
is null)