How can I make a stream appendable and readable at the same time?
Because when I do this:
static FileStream fs = File.Open("keys.txt", FileMode.Append, FileAccess.ReadWrite, FileShare.None);
I get the following error:
"Append access can be requested only in write-only mode."