Interprocess Communication Between C# application and unmanaged C++ application

前端 未结 8 2372
感动是毒
感动是毒 2021-01-05 15:20

I have two Windows services, the first one written in C# and the second written in unmanaged C++, I want to know how can I do two-way interprocess communication.

8条回答
  •  醉话见心
    2021-01-05 15:34

    Create a Singleton COM object. Maintain data in this COM object, which can be read by both C++ and C# applications.

提交回复
热议问题