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

c# 更改调用程序集(dll)位置

时间:2017-06-02 09:55:09      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:ring   dom   direct   pre   object   rect   app   form   pdo   

 static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"lib\");
            path = Path.Combine(path, args.Name.Split(‘,‘)[0]);
            path = String.Format(@"{0}.dll", path);
            return System.Reflection.Assembly.LoadFrom(path);
        }

AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;

 

c# 更改调用程序集(dll)位置

标签:ring   dom   direct   pre   object   rect   app   form   pdo   

原文地址:http://www.cnblogs.com/daxiaya/p/6931693.html

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