如何在託管C# DLL 中嵌入非託管DLL
背景
背景在其中嵌入非託管DLL託管C# DLL 是一種允許無縫使用本機.NET 專案中的程式碼。 Microsoft 支援此功能,如下所述:http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.dllimportattribute.aspx
錯誤:存取被拒絕(0x80070005)
儘管遵循建議的方法,使用者可能會遇到以下異常:
解決方案:明確擷取並載入DLL
存取被拒絕。 (HRESULT 異常:0x80070005 (E_ACCESSDENIED))
解決方案:明確擷取並載入DLL
解決方案:明確萃取並載入DLL// Create a temporary directory 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 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正在使用P/Invoke之前,應將其提取到臨時目錄並使用 LoadLibrary 明確載入。此技術可確保正確存取資源並正確建立依賴關係。 程式碼範例以下程式碼示範了此方法:透過遵循此方法,開發人員可以將非託管DLL 嵌入到託管C# DLL 中,並成功利用P/Invoke 調用,而不會遇到訪問被拒絕的情況錯誤。
以上是在託管 C# DLL 中嵌入非託管 DLL 時如何解決「存取被拒絕」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!