From 06d2ddb26a0611364d4fadd0aeec683edba99bae Mon Sep 17 00:00:00 2001 From: Rich Lander <2608468+richlander@users.noreply.github.com> Date: Mon, 15 Sep 2025 17:28:08 -0700 Subject: [PATCH] Fix namespace name --- docs/csharp/fundamentals/tutorials/file-based-programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/fundamentals/tutorials/file-based-programs.md b/docs/csharp/fundamentals/tutorials/file-based-programs.md index d82486e034f74..c963ff9c6550e 100644 --- a/docs/csharp/fundamentals/tutorials/file-based-programs.md +++ b/docs/csharp/fundamentals/tutorials/file-based-programs.md @@ -142,7 +142,7 @@ That handles command line arguments correctly. Now, add the code to handle readi } ``` - The preceding code reads the console input until either a blank line or a `null` is read. (The method returns `null` if the input stream is closed by typing ctrl+C.) + The preceding code reads the console input until either a blank line or a `null` is read. (The method returns `null` if the input stream is closed by typing ctrl+C.) 1. Test reading standard input by creating a new text file in the same folder. Name the file `input.txt` and add the following lines: