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

Also, see how others use MAF:

  • What can be defined as contracts?
  • Using IoC and MAF together?
  • How addins interact with each other?
  • How does MAF help create a winforms application? ...
+3
source share
1 answer

As already mentioned in the comments, System.AddIn is largely considered obsolete in the face of an updated API, which is much easier to use. It is located in System.ComponentModel.Composition and is commonly known as MEF (short for Managed Extensibility Framework). I would advise you to skip MAF and go directly to using MEF.

FWIW, Visual Studio 2010 MEF , , VS, , .

+2

Source: https://habr.com/ru/post/1712845/


All Articles