C Sharp (C#) - Exception Handling
What will happen if you try to access a resource after the
using block ends?using (var fs = new System.IO.FileStream("file.txt", System.IO.FileMode.Open)) {
// use fs
}
fs.ReadByte();