Tagged Questions

1
vote
1answer
33 views

What are the implications for Async I/O (BeginWrite/BeginRead) with a chain of streams?

Suppose I have a chain of streams, that does Compression -> Encryption -> File I/O. In C#, using synchronous I/O, it would look something like this: int n=0; byte[] buffer= new byte[2048]; …