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