Can I run a C # (dll) build as a 32-bit version from a 64-bit application?

I actually do this with helper executables, which are 32 bits. But can I do this with DLLs that run on 32-bit CodeDOM?

+6
source share
1 answer

Perhaps this will help you. Calling 32-bit code from a 64-bit process.

But it is better to call 32 bits from a separate 32-bit process, and your 64-bit code can start it and contact it.

+1
source

Source: https://habr.com/ru/post/904025/


All Articles