Skip to content

Commit c7d6991

Browse files
authored
Fix namespace name (#48540)
1 parent 4f14f88 commit c7d6991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/fundamentals/tutorials/file-based-programs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ That handles command line arguments correctly. Now, add the code to handle readi
142142
}
143143
```
144144

145-
The preceding code reads the console input until either a blank line or a `null` is read. (The <xref:Java.IO.Console.ReadLine*?displayProperty=nameWithType> method returns `null` if the input stream is closed by typing <kbd>ctrl+C</kbd>.)
145+
The preceding code reads the console input until either a blank line or a `null` is read. (The <xref:System.Console.ReadLine*?displayProperty=nameWithType> method returns `null` if the input stream is closed by typing <kbd>ctrl+C</kbd>.)
146146

147147
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:
148148

0 commit comments

Comments
 (0)