Skip to content

Commit 7077e60

Browse files
committed
update steps
1 parent 103be15 commit 7077e60

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ In this tutorial, you:
2020
> [!div class="checklist"]
2121
>
2222
> * Create a file-based program.
23-
> * Run the program using the .NET CLI and `#!` directives.
24-
> * Add features and NuGet packages to the program.
25-
> * Parse and process command line arguments and standard input.
23+
> * Add Unix shebang (`#!`) support.
24+
> * Read command line arguments.
25+
> * Handle standard input.
26+
> * Write ASCII art output.
27+
> * Process command line arguments.
28+
> * Use parsed command line results.
29+
> * Test the final application.
2630
2731
You build a file-based program that writes text as ASCII art. The app is contained in a single file, uses NuGet packages that implement some of the core features.
2832

@@ -94,7 +98,7 @@ After making these two changes, you can run the program from the command line di
9498

9599
If you prefer, you can remove the extension so you can type `./AsciiArt` instead. You can add the `#!` to your source file even if you use Windows. The Windows command line doesn't support `#!`, but the C# compiler allows that directive in file-based apps on all platforms.
96100

97-
## Process command line arguments
101+
## Read command line arguments
98102

99103
Now, write all arguments on the command line to the output.
100104

docs/csharp/fundamentals/tutorials/snippets/file-based-programs/AsciiArt

100644100755
File mode changed.

0 commit comments

Comments
 (0)