What is the simplest method of inter-process communication between 2 C# processes?

后端 未结 7 1552
甜味超标
甜味超标 2020-11-22 07:31

I want to create a communication between a parent and a child process, both written in C#.

It should be asynchronous, event-driven.

I don\'t want to run a thre

7条回答
  •  情歌与酒
    2020-11-22 08:21

    There's also MSMQ (Microsoft Message Queueing) which can operate across networks as well as on a local computer. Although there are better ways to communicate it's worth looking into: https://msdn.microsoft.com/en-us/library/ms711472(v=vs.85).aspx

提交回复
热议问题