将非托管 DLL 嵌入到托管 C# DLL 中
将非托管 DLL 嵌入到托管 DLL 中是一种巩固和保护依赖项的有用技术。但是,实现起来可能具有挑战性。
问题:
尝试使用 DllImport 将非托管 DLL 嵌入到托管 DLL 中时,会遇到访问被拒绝的情况错误。
说明:
要将非托管 DLL 嵌入为资源,除了简单地将其添加为项目中的嵌入资源之外,您还需要执行其他步骤。
解决方案:
成功嵌入并在托管 DLL 中使用非托管 DLL:
提取并加载嵌入式 DLL:
使用唯一的临时目录:
处理文件复制异常:
示例代码:
以下代码代码片段演示了嵌入过程:
// Get a unique temporary directory for this assembly version string dirName = Path.Combine(Path.GetTempPath(), "MyAssembly." + Assembly.GetExecutingAssembly().GetName().Version.ToString()); if (!Directory.Exists(dirName)) Directory.CreateDirectory(dirName); string dllPath = Path.Combine(dirName, "MyAssembly.Unmanaged.dll"); // Extract the embedded DLL to the temporary location using (Stream stm = Assembly.GetExecutingAssembly().GetManifestResourceStream( "MyAssembly.Properties.MyAssembly.Unmanaged.dll")) { using (Stream outFile = File.Create(dllPath)) { CopyBytes(stm, outFile); } } // Load the extracted DLL explicitly IntPtr h = LoadLibrary(dllPath); Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);
以上是如何在托管 C# DLL 中成功嵌入和使用非托管 DLL?的详细内容。更多信息请关注PHP中文网其他相关文章!