Exemplo n.º 1
0
 public pipe(string pipeName)
 {
     pipeServer =
         new NamedPipeServerStream(pipeName, PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }
Exemplo n.º 2
0
 public pipe()
 {
     pipeServer =
         new NamedPipeServerStream("chessPipe", PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }