IPC between .NET and C++ applications

后端 未结 4 1677
粉色の甜心
粉色の甜心 2021-01-13 21:53

Are there any libraries for inter-process communication (IPC) between a .NET application and a native C++ application?

4条回答
  •  别那么骄傲
    2021-01-13 22:38

    You can use Socket for simple communication. It's in the os so you don't need any new libraries. Detailed info in C++ Socket and C# Socket

    If the interprocess communication is always going to be done on the same machine, named pipes is the way to go because they are faster than other options.

提交回复
热议问题