C Sharp (C#) - File IO
Identify the error in the following code snippet that uses a
using statement with a file stream:using (FileStream fs = new FileStream("data.txt", FileMode.Open))
byte[] buffer = new byte[100];
fs.Read(buffer, 0, buffer.Length);
