Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the easiest way to do inter process communication in C#? [closed]

I have two C# applications and I want one of them send two integers to the other one (this doesn't have to be fast since it's invoked only once every few seconds).

What's the easiest way to do this? (It doesn't have to be the most elegant one.)

like image 390
genesys Avatar asked Nov 26 '09 09:11

genesys


1 Answers

The easiest and most reliable way is almost certainly IpcChannel (a.k.a. Inter Process Communication Channel); that's what it's there for. You can get it up and running with a couple of lines of code and configuration.

like image 195
Greg Beech Avatar answered Oct 12 '22 10:10

Greg Beech