使用 P/Invoke 层时如何更改 VB.Net 中非托管 C 库的位置/路径?

发布于 2024-08-23 18:19:31 字数 105 浏览 7 评论 0原文

目前,在我们的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知足的幸福 2024-08-30 18:19:31

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文