在托管 C# DLL 中嵌入非托管 DLL 是捆绑必要资源和减少依赖管理的便捷方法。此问题解决了尝试使用 DllImport 属性嵌入非托管 DLL 时遇到的“访问被拒绝”异常。
提供的解决方案包括在初始化期间将非托管 DLL 提取到临时目录中。此步骤涉及访问嵌入式资源流并将 DLL 的内容复制到临时位置。然后,在使用 P/Invoke 调用之前,使用 LoadLibrary 显式加载提取的 DLL。
// Extract and load the unmanaged DLL. string dllPath = Path.Combine(Path.GetTempPath(), "MyAssembly." + Assembly.GetExecutingAssembly().GetName().Version.ToString(), "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); } } } IntPtr h = LoadLibrary(dllPath); Debug.Assert(h != IntPtr.Zero, "Unable to load library " + dllPath);
加载非托管 DLL 后,它就可供托管 DLL 中的 DllImport 调用使用。这种方法可以确保使用正确版本的非托管 DLL,即使多个不同版本的应用程序同时运行也是如此。
以上是在托管 C# DLL 中嵌入非托管 DLL 时如何解决'访问被拒绝”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!