dotnet build InterProcessCommunication.sln
Server Pipe
NamedPipeServer server = new NamedPipeServer();
server.StartListening();
#On Closing
server.StopNotify()
Client Pipe
var client = new NamedPipeClient();
client.StartListening();
//On Closing
client.StopNotify()