csharp MEF属性ベースのサンプル

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp MEF属性ベースのサンプル相关的知识,希望对你有一定的参考价值。

namespace MEFSamples
{
    using System;
    using System.Linq;

    using System.ComponentModel.Composition;
    using System.ComponentModel.Composition.Hosting;

    class Program
    {
        [Import("upper", typeof(ILog))]
        public ILog Logger { get; set; }

        static void Main(string[] args)
        {
            var catalog = new AggregateCatalog();
            catalog.Catalogs.Add(new AssemblyCatalog(typeof(Program).Assembly));

            var container = new CompositionContainer(catalog);
            var obj = container.GetExportedValue<ILog>("reverse");
            obj.Debug("hello world");

            var me = new Program();
            container.ComposeParts(me);
            me.Logger.Debug("hello world");

            foreach (var item in container.GetExportedValues<ILog>())
            {
                item.Debug("GetExportedValues");
            }
        }
    }

    interface ILog
    {
        void Debug(string message);
    }

    [Export(typeof(ILog))]
    class LogImpl : ILog
    {
        public void Debug(string message)
        {
            Console.WriteLine(message);
        }
    }

    [Export("upper", typeof(ILog))]
    class LogUpperImpl : ILog
    {
        public void Debug(string message)
        {
            Console.WriteLine(message.ToUpper());
        }
    }

    [Export("reverse", typeof(ILog))]
    class LogReverseImpl : ILog
    {
        public void Debug(string message)
        {
            Console.WriteLine(new string(message.Reverse().ToArray()));
        }
    }
}

以上是关于csharp MEF属性ベースのサンプル的主要内容,如果未能解决你的问题,请参考以下文章

csharp Dapper .NETのサンプル

csharp 【WPF】DataGrid中のサンプル

css jQuery的を利用したアコーディオンのサンプル

css jQuery的を利用したアコーディオンのサンプル

css jQuery的を利用したアコーディオンのサンプル

csharp System.Collections.Concurrent.BlockingCollectionのサンプル