Executing a stream on a different platform (64 bit)
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 to share