首页 >后端开发 >C++ >如何在托管 C# DLL 中嵌入非托管 DLL?

如何在托管 C# DLL 中嵌入非托管 DLL?

Susan Sarandon
Susan Sarandon原创
2024-12-31 21:43:10950浏览

How Can I Embed an Unmanaged DLL within a Managed C# DLL?

将非托管 DLL 嵌入到托管 C# DLL 中

问题:

如何将非托管 C DLL 嵌入到托管中C# DLL 使用DLLImport?

答案:

虽然通常不建议将非托管 DLL 嵌入到托管 DLL 中,但可以通过在初始化期间将非托管 DLL 提取到临时目录来实现使用前使用 LoadLibrary 显式加载它P/Invoke。

实现:

  1. 提取非托管 DLL:确定一个临时目录来存储非托管 DLL,使用程序集的版本号以避免版本冲突。将包含 DLL 的嵌入资源流提取到此目录。
  2. 加载 DLL:使用 LoadLibrary 显式加载提取的 DLL。临时目录可能不在系统路径中,因此这是 P/Invoke 指令定位 DLL 所必需的。

示例代码:

// Get temporary directory with assembly version in path
string dirName = Path.Combine(Path.GetTempPath(), "MyAssembly." + Assembly.GetExecutingAssembly().GetName().Version);
Directory.CreateDirectory(dirName);
string dllPath = Path.Combine(dirName, "MyAssembly.Unmanaged.dll");

// Get embedded resource stream and copy DLL to temporary file
using (Stream stm = Assembly.GetExecutingAssembly().GetManifestResourceStream("MyAssembly.Properties.MyAssembly.Unmanaged.dll"))
{
    using (Stream outFile = File.Create(dllPath))
    {
        const int sz = 4096;
        byte[] buf = new byte[sz];
        while (true)
        {
            int nRead = stm.Read(buf, 0, sz);
            if (nRead < 1)
                break;
            outFile.Write(buf, 0, nRead);
        }
    }
}

// Load DLL explicitly
IntPtr h = LoadLibrary(dllPath);
Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);

请注意,这种方法有其优点,例如将所有内容都保存在单个文件中,但通常建议将非托管 DLL 作为单独的文件链接到程序集既安全又简单。

以上是如何在托管 C# DLL 中嵌入非托管 DLL?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn