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

Managed Extensibility Framework: Part 1

Rate me:
Please Sign up or sign in to vote.
4.94/5 (26 votes)
23 Jun 2009CPOL9 min read 146.3K   529   72  
First in an article series intended to provide an introduction to Microsoft's Managed Extensibility Framework.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace meflab1
{
    public interface IGreetings
    {
        string SayHello();
    }

    public interface IContextInfo
    {
        IDictionary<string, string> GetContextInfo();
    }
}

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)


Written By
Architect
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions