I\'m currently investigating MEF to know the feasibility of some kind of plugin subsystem for a software we are writing at my company. One of the first开发者_开发百科 questions that came to my mind is
I\'m using constructor dependency injection in my WPF application and I keep running into the following pattern, so would like to get other people\'s opinion on it and hear about alternative solutions
I have to register an object instance into a container. I can\'t use the generic ComposeExportedValue<T> since I don\'t know what T is at compile time.
I 开发者_StackOverflowam using Visual Studio 2010, try to create a MEF application. Does this require .NET 4.0 or can I target .NET 2.0?Yes you do:
I have a program that is extendable by plugins using the Microsoft Extensibility Framework. But i dont want untrusted 开发者_如何学Gosources to give out plugins that may be insecure.
Right now, I\'m trying to separate out a set of constantly changing classes into their own dll and dynamically load them using MEF. My problem is that whenever I try and overwrite the dll while the ap
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I have been developing a managed extensibility framework application for the last several months using the community preview.I have been using the GetExportedValues() method and the PartCreationPolicy
I\'ve had a few questions about MEF recently, but here\'s the big one -- is it really all-or-nothing, as it appears to be?开发者_如何学编程
When I try to do this: [Export(typeof(IMyService))] [PartCreationPolicy(CreationPolicy.Shared)] private MyService Service