Click here to Skip to main content
15,896,207 members
Articles / Programming Languages / C# 4.0

An Introduction to Managed Extensibility Framework (MEF) - Part I

Rate me:
Please Sign up or sign in to vote.
4.92/5 (78 votes)
27 Apr 2011CPOL9 min read 248K   5.9K   175  
This article will disscuss about MEF, how to start working in this, etc.
using System;
using System.Windows;
using CompositionHelper;


namespace CalculatorUI
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        CalciCompositionHelper objCompHelper;

        public MainWindow()
        {
            InitializeComponent();
        }

        private void btnAdd_Click(object sender, RoutedEventArgs e)
        {

            objCompHelper = new CalciCompositionHelper();

            //Assembles the calculator components that will participate in composition
            objCompHelper.AssembleCalculatorComponents();

            //Gets the result
            var result = objCompHelper.GetResult(Convert.ToInt32(txtFirstNumber.Text), Convert.ToInt32(txtSecondNumber.Text));

            //Display the result
            txtResult.Text = result.ToString();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions