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

2021-01-25 18:14

阅读:489

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

设置程序Dlls的搜索路径

1.导入Native函数

/// 
/// 设置Dlls的搜索路径
/// 
/// 
/// 
[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


评论


亲,登录后才可以留言!