我可以从 64 位应用程序中将 C# 程序集 (dll) 作为 32 位运行吗?
我实际上是使用 32 位的帮助程序可执行文件来完成此操作。但是我可以使用在 32 位 CodeDOM 上运行的 DLL 来实现这一点吗?
I'm actually doing this with helper executables that are 32bit. But can I do it with DLLs that run on 32bit CodeDOM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许,这可以帮助您 从 64 位进程调用 32 位代码
但最好调用来自单独的 32 位进程的 32 位,您的 64 位代码可以启动它并与其通信
Maybe, this helps you Calling 32bit Code from 64bit Process
But it's better to call 32bit from separate 32bit process, and your 64bit code could start it and communicate with it