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

后端 未结 7 1555
甜味超标
甜味超标 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:10

    I would suggest using the Windows Communication Foundation:

    http://en.wikipedia.org/wiki/Windows_Communication_Foundation

    You can pass objects back and forth, use a variety of different protocols. I would suggest using the binary tcp protocol.

提交回复
热议问题