For us, we will just need to execute the following in each of the two applications. This can be in a single .cpp file linked into both the cache-server and cache-client apps.// IPC app universe: simple structs
IO.Pipes; using interop; using System.IO; using System.Threading; using System.Text; namespace interop_tests { [TestClass] public class UnitTest1 { private string SERVER_SIDE = "\\\.\\pipe\\serverside"; private string CLIENT_SIDE = "\\\.\\pipe\\clientside"; private TwoWayPipeMessage...