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

C#在运行时自动引入正确的Dlls

时间:2019-12-09 12:21:39      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:imp   ext   director   get   entry   private   environ   return   csharp   

设置程序Dlls的搜索路径

1.导入Native函数

/// <summary>
/// 设置Dlls的搜索路径
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern bool SetDllDirectory(string path);

2.在引入包装类中设置相应的Dlls的搜索路径

var path = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
path = Path.Combine(path, Environment.Is64BitProcess ? "x64" : "x86");
SetDllDirectory(path);

C#在运行时自动引入正确的Dlls

标签:imp   ext   director   get   entry   private   environ   return   csharp   

原文地址:https://www.cnblogs.com/linxmouse/p/12009946.html

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