問題:
アンマネージド C# DLL をマネージド C# DLL に埋め込む方法C# DLLを使用してDLLImport?
回答:
アンマネージ DLL をマネージ DLL に埋め込むことは一般に推奨されませんが、初期化中にアンマネージ DLL を一時ディレクトリに抽出することで実現できます。使用する前に LoadLibrary で明示的にロードするP/Invoke.
実装:
コード例:
// 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);
このアプローチには、すべてを 1 つのファイルに保存できるなどの利点がありますが、通常はアンマネージ DLL を別のファイルとしてアセンブリにリンクすることが推奨されます。セキュリティとシンプルさの両方を実現します。
以上がマネージド C# DLL 内にアンマネージド DLL を埋め込むにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。