C# – Opening a client Named Pipe
posted in C#, Coders corner on Sep 8th, 2012
Letting processes communicate on Windows can be done on several ways. By sending Windows messages, opening network connections via sockets or via Named Pipes. Here a minimalistic example of a Named Pipe Client and also its counter part, the server. With this example code only one client can connect to the server. If you want [...]