C#加载嵌入到资源的非托管dll
程序员文章站
2022-03-20 14:20:57
如何加载非托管dll我们总会遇到需要加载非win32的非托管dll,这里推荐一种方式就是将那些非win32的非托管dll嵌入资源的方式,在入口解压并且加载的方式,我先来看看如何实现吧,首先我们准备好d...
如何加载非托管dll
我们总会遇到需要加载非win32的非托管dll,这里推荐一种方式就是将那些非win32的非托管dll嵌入资源的方式,在入口解压并且加载的方式,我先来看看如何实现吧,首先我们准备好demo,新增控制台项目如下:
代码如下:
static void main(string[] args) { unzipandload(); } /// <summary> /// 解压资源并且加载非托管dll /// </summary> static void unzipandload() { var folderpath = path.getdirectoryname(assembly.getexecutingassembly().location); var dllpath = path.combine(folderpath, $"{nameof(resource.pdfium)}.dll");//解压输出的路径 if (!file.exists(dllpath)) file.writeallbytes(dllpath, resource.pdfium); loaddll(dllpath);//应该每次都加载非托管 } /// <summary> /// 加载非托管dll /// </summary> /// <param name="dllname"></param> public static void loaddll(string dllname) { intptr h = loadlibrary(dllname); if (h == intptr.zero) { exception e = new win32exception(); throw new dllnotfoundexception($"unable to load library: {dllname}", e); } console.writeline("load library successful"); } [dllimport("kernel32", setlasterror = true, charset = charset.unicode)] static extern intptr loadlibrary(string lpfilename);
输出:
load library successful
其实上述代码还有优化的空间,微软集成了很多win32函数的包,例如我们要导入win32的下常见的kernel32
dll和user32
dll,我们可以通过nuget安装,我们可以在csproj加入以下代码(或者直接nuget搜索pinvoke.kernel32):
<itemgroup> <packagereference include="pinvoke.kernel32" version="0.7.104" /> </itemgroup>
那么之前的代码删除的loadlibrary
方法删除,loaddll
方法则直接改为以下:
/// <summary> /// 加载非托管dll /// </summary> /// <param name="dllname"></param> public static void loaddll(string dllname) { var h =kernel32.loadlibrary(dllname); if (h.isinvalid)//是否是无效的 { exception e = new win32exception(); throw new dllnotfoundexception($"unable to load library: {dllname}", e); } console.writeline("load library successful"); }
参考
以上就是c#如何加载嵌入到资源的非托管dll的详细内容,更多关于c#资源非托管dll的资料请关注其它相关文章!
上一篇: nodejs处理tcp连接的核心流程