I have a multiple server client application in C# . My requirement is to exchange some float values between different clients.Which IPC mechanism is best & easy to use. I read shared memory is simplest but then it uses pointers which is considered as unsafe code in C#. Can you suggest me other mechanisms? Code examples will be very welcome .
I have a script that runs on a server and I want it now to send messages to my PC. I want to send TCP or UDP messages to some port. What is the best way to do this (a tutorial will be great)? And ...