Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I'm actually doing this with helper executables that are 32bit. But can I do it with DLLs that run on 32bit CodeDOM?

like image 551
blez Avatar asked Dec 18 '11 13:12

blez


1 Answers

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

like image 165
Regfor Avatar answered Oct 06 '22 02:10

Regfor