Named pipe stalls threads?
- by entens
I am attempting to push updates into a process via a named pipe, but in doing so my process loop now seams to stall on while ((line = sr.ReadLine()) != null). I'm a little mystified as to what might be wrong as this is my first foray into named pipes.
void RefreshThread()
{
using (NamedPipeServerStream pipeStream = new…