使用 P/Invoke 层时如何更改 VB.Net 中非托管 C 库的位置/路径?
目前,在我们的 VB.Net Windows 应用程序中,C 库位于“bin”目录下,但我们希望将其存储在存在其他表单和类的应用程序根目录下...我们如何在 Vb.Net 2008 中执行此操作?
Currently in our VB.Net windows application, C libraries are present under the 'bin' directory but we want to store it under aplication root directory where other forms and classes are present...How can we do this in Vb.Net 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
P/Invoke 层使用 LoadLibrary API 函数的 规则 用于查找您通过 DllImport 属性指定的 DLL。
话虽这么说,您应该查看 LoadLibrary API 函数的“备注”部分,如 DllImportAttribute 构造函数的 dllName 参数最终是作为 LoadLibrary 函数的 lpFileName 参数名称传递的。
The P/Invoke layer uses the rules that the LoadLibrary API function uses in order to find the DLLs that you specify with the DllImport attribue.
That being said, you should look at the Remarks section of the LoadLibrary API function, as the dllName parameter for the constructor of the DllImportAttribute is ultimately what is passed as the lpFileName parameter name for the LoadLibrary function.