Пример #1
0
 public pipe(string pipeName)
 {
     pipeServer =
         new NamedPipeServerStream(pipeName, PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }
Пример #2
0
 public pipe()
 {
     pipeServer =
         new NamedPipeServerStream("chessPipe", PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }