从托管代码 pInovked 后,非托管 DLL 的生命周期是多少?

发布于 2024-09-26 21:06:47 字数 134 浏览 1 评论 0原文

例如,如果您有一个简单的托管控制台应用程序和一个简单的非托管 C++ DLL。您 pInvoke 到 C++ DLL 中的函数,该 DLL 是否会在非托管进程中保持加载状态,直到该进程关闭为止?或者每次 pInvoke 调用完成后 DLL 都会被卸载吗?

For example if you have a simple managed console app and a simple unmanaged C++ DLL. You pInvoke into a function in the C++ DLL, does the DLL stay loaded in the unmanaged process until said process comes down? Or does the DLL get unloaded at the completion of every pInvoke call?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦毁影碎の 2024-10-03 21:06:47

除非您明确告诉它卸载,否则它会保留在内存中。

It stays in memory unless you explicity tell it to unload.

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