Executing a stream on a different platform (64 bit)

A bit long shot.

I have a 32 bit application. It has some code in it that will work better up to 64 bits. I cannot convert my entire application to 64-bit.

So, can I run a part of my application in a different process, but also on a 64-bit process?

thank

+3


source to share


1 answer


Not. You can not. The bits on which the application runs are specified by the process, not by the thread or AppDomain.



The only alternative you have is to create a separate executable that runs on different bits. Call this process from the main process. If needed, you can use the messaging engine to exchange information between them, like one of the classes that PipeStream outputs .

+3


source







All Articles