编程语言
首页 > 编程语言> > c#-从P / Invoke捕获DllNotFoundException

c#-从P / Invoke捕获DllNotFoundException

作者:互联网

找到一个解决方案的职位:How do I handle a failed DllImport?

我正在编写一个应用程序,该应用程序根据主机使用的是Windows Vista系列还是NT系列版本检查操作系统版本以执行不同的操作.如果是Vista系列,它将加载一些DLL(使用DllImport),但不使用这些DLL.问题是,如果在不具有这些DLL的Windows的较早版本上使用DllImport加载它们,则会在运行时导致DllNotFoundException.

如何捕获/阻止/忽略DllNotFoundExceptions?在我未处理的异常事件中尝试将异常设置为“已处理”不允许该应用程序继续运行.

解决方法:

我认为您应该能够使用win32 LoadLibrary / GetProcAddress / FreeLibrary和一个委托(就像使用回调函数一样)以“传统”方式进行.

http://msdn.microsoft.com/en-us/library/d186xcf0.aspx可能是一个起点…

这应该使您开始:

[DllImport("kernel32.dll", SetLastError=true)]
public static extern IntPtr LoadLibrary(string lpFileName);

[DllImport("kernel32.dll", SetLastError=true)]
static extern bool FreeLibrary(IntPtr hModule);

[DllImport("kernel32.dll", CharSet=CharSet.Ansi, ExactSpelling=true, SetLastError=true)]
public static extern IntPtr GetProcAddress(IntPtr hModule, string procName);

然后,声明一个具有正确的导出签名的委托,并使用Marshal.GetDelegateForFunctionPointer()从您从GetProcAddress返回的函数指针中创建该委托.

标签:dllimport,dllnotfoundexception,c,pinvoke
来源: https://codeday.me/bug/20191210/2101617.html