I am not sure whether I need to call flush if I write something like this:
using (File stream...)
using (CryptoStream..)
using (BinaryWriter...)
{
//do something
}
Is this always automatically flushed? When does "using statement" flushes and when it doesn't flush a stream (if that can happen)?
Thank you for your answers