What is the scope of `file` declared with a using declaration (no braces)?void Process() { using var file = new StreamWriter("out.txt"); file.WriteLine("hi"); // ... more code }