コード例 #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);
 }