gpt4 book ai didi

c# - 如何从 C# 中的子文件夹导入 .dll 库

转载 作者:行者123 更新时间:2023-11-30 17:46:23 26 4
gpt4 key购买 nike

当我将库与应用放在同一文件夹中时,我可以简单地:

[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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com