200 人の異なるユーザーが 1 つのファイルにアクセスするために使用するコードを開発しています。
多数のユーザーが同時にアクセスしているファイルを読み取るためのベストプラクティスは何ですか
FileStream stream = File.OpenRead(FileName);
byte[] contents = new byte[stream.Length];
stream.Read(contents, 0, (int)stream.Length);
stream.Close();
それを行うより良い方法はありますか?