Add beginner code explanation sections to get-started.md#54102
Open
melgoharyme wants to merge 1 commit into
Open
Add beginner code explanation sections to get-started.md#54102melgoharyme wants to merge 1 commit into
melgoharyme wants to merge 1 commit into
Conversation
Add two sections to the Get started with .NET tutorial:
- Add "Understand the code" section that breaks down
Console.WriteLine("Hello, World!") into its parts.
- Add "How file-based apps work" section that explains
what `dotnet hello-world.cs` do and why no project
file is needed.
No existing content was modified.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Get Started with .NET tutorial shows how to create and run a simple file-based app, but it does not explain the code or what happens when the app is executed.
This PR adds two short sections to help beginners understand the example before moving on to more advanced tutorials.
Summary
In the Get started with .NET tutorial, add two sections:
Console.WriteLine("Hello, World!"), including whatConsoleandWriteLineare, what a string literal is, and what a statement is in C#.dotnet hello-world.cs, why a project file is not required, and how file-based apps relate to project-based apps.No change was made to any existing content.
Internal previews