作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我将库与应用放在同一文件夹中时,我可以简单地:
[DllImport("kernel32")]
public extern static IntPtr LoadLibrary(string librayName);
IntPtr iq_dll = LoadLibrary("IQPokyd.dll");
我的 app.config 中也有这个
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="plugins;" />
</assemblyBinding>
</runtime>
</configuration>
我可以加载这个库。问题是它正在使用一些需要在应用程序运行目录中的配置文件。有没有可能如何告诉图书馆它需要的文件与图书馆在同一个文件夹中?
最佳答案
由于 DLL 在当前目录中搜索配置,因此在加载之前临时更改当前目录是有意义的:
string saveCurDir = Directory.GetCurrentDirectory();
Directory.SetCurrentDirectory(Path.Combine(Application.StartupPath, "plugins"));
IntPtr iq_dll = LoadLibrary("IQPokyd.dll");
Directory.SetCurrentDirectory(saveCurDir);
关于c# - 如何从 C# 中的子文件夹导入 .dll 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26325470/
我是一名优秀的程序员,十分优秀!