码迷,mamicode.com
首页 > Windows程序 > 详细

C# 动态加载Dll接口

时间:2016-11-24 07:00:33      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:eric   invoke   null   blog   plugin   get   alt   base   using   

技术分享

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MyFrist
{
    interface Test
    {
        int Add(int a, int b);
    }
    class Hei : Test
    {

        public int Add(int a, int b)
        {
            try
            {
                return a + b;
            }
            catch (Exception ex)
            {
                return 0;
            }
        }
    }
}

 

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleDll
{
    class Program
    {
        static void Main(string[] args)
        {
            string dllPath = AppDomain.CurrentDomain.BaseDirectory + "MyFrist.dll";
            var resource = System.Reflection.Assembly.LoadFrom(dllPath);
            foreach (var _every in resource.GetTypes())
            {
                if (_every.GetInterface("Test") != null)
                {
                    var plugin = Activator.CreateInstance(_every);
                    object[] paramertors = new object[] { 500, 2 };//参数集合
                    var temp=_every.GetMethod("Add");
                    object result=temp.Invoke(plugin, paramertors);
                    Console.WriteLine(result);
                }
            }
        }
    }
}

 

C# 动态加载Dll接口

标签:eric   invoke   null   blog   plugin   get   alt   base   using   

原文地址:http://www.cnblogs.com/testsec/p/6095803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!