Using C # /. NET (Xamarin / Mono, really).
I have a class with method (A) that takes a stream that it writes, and I have another class with method (B) that takes a stream to read from.
I want to have a stream that is transmitted both (A) and (B), so when (A) writes to the stream, that data can be read by (B).
Is there already such a beast that does not use OS pipes?
source
share