I have a method which writes entries to daily log files using the StreamWriter class but it seems that 2 or more users cannot open/write concurrently to the same log file. I see this behavior because I´ve had errors saying that a file is already open when
another user tries to write to the same log file. I make sure that log files are closed after writing the entries. How can I avoid this issue?
Go to the complete details ...