bo bo
bo bo

Reputation: 844

C# Source Code Examples that make use of System.Addin (MAF)?

Just like to see how others make use of MAF:

Upvotes: 3

Views: 2184

Answers (1)

Morten Mertner
Morten Mertner

Reputation: 9474

As has already been hinted in the comments, System.AddIn is largely considered obsolete in the face of a revamped API that is much easier to use. This resides in System.ComponentModel.Composition and is popularly known as MEF (short for Managed Extensibility Framework). I'd advise you to skip MAF and skip directly to using MEF.

FWIW, Visual Studio 2010 uses MEF to dynamically extend the UI, both for features shipping with VS and for extensions provided by 3rd parties.

Upvotes: 2

Related Questions