✅ Pipe client server
Hey! I've been reading into the C# Pipe stream stuff, because I need some interprocess communication.
What I want is 2 processes being able to send a bit of data to each other whenever.
All the example's I've seen so far just
If I want to support recieving and sending at the same time, do I need multiple Streams per program?
What I want is 2 processes being able to send a bit of data to each other whenever.
All the example's I've seen so far just
- Open a stream
- Send some data
- Recieve some data back
- Close the stream
If I want to support recieving and sending at the same time, do I need multiple Streams per program?