示例#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);
 }