
SendMessage or Alternative for IPC?
I am looking for good ideas on how to do cross-executable
communication. All executables are
C#. The parent .exe launches n
number of child .exes, and the parent should be able to send messages
to any of the children, and any child should be able to send messages
to the parent (but not to other children). If this was VB or VFP, I
would use the Win32API and SendMessage or count Mutexes or etc.
How would I do this same kind of thing C# in .NET?
Thanks.