예제 #1
0
 public pipe(string pipeName)
 {
     pipeServer =
         new NamedPipeServerStream(pipeName, PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }
예제 #2
0
파일: pipe.cs 프로젝트: Ron02/Chess_Game
 public pipe()
 {
     pipeServer =
         new NamedPipeServerStream("chessPipe", PipeDirection.InOut, 1);
     ss = new StreamString(pipeServer);
 }