在托管 C# DLL 中嵌入非托管 DLL
将非托管 DLL 与托管 C# 代码集成时,开发人员经常遇到需要将这些 DLL 嵌入到托管 C# DLL 中的情况。托管程序集。本文研究了潜在问题,并提供了将非托管 DLL 嵌入托管 DLL 的解决方案。
问题陈述
开发人员尝试将非托管 DLL 嵌入托管 C# 中按照 Microsoft 的建议,使用 DllImport 属性的 DLL。但是,在运行代码时,会抛出“访问被拒绝”异常。
解决方案
虽然 MSDN 文档建议嵌入非托管 DLL 的可行性,但它失败了解决与 DLL 访问权限相关的根本问题。以下解决方案有效解决了此问题:
以下是此方法的示例实现:
// Extract the unmanaged DLL 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"); 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 the DLL explicitly IntPtr h = LoadLibrary(dllPath); Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);
按照以下步骤,开发者可以成功嵌入将非托管 DLL 转换为托管 C# DLL,克服“访问被拒绝”异常并释放此集成技术的全部潜力。
以上是如何在托管 C# DLL 中嵌入非托管 DLL 并避免'访问被拒绝”?的详细内容。更多信息请关注PHP中文网其他相关文章!