Looking for help
This section is all about how to find quality information about programming on the web.
Reading Microsoft documentation
The definitive resource for getting help with Microsoft developer tools and platforms is Microsoft Docs, and you can find it at the following link: https://docs.microsoft.com/.
Getting help for the dotnet tool
At the command line, you can ask the dotnet
tool for help with its commands:
- To open the official documentation in a browser window for the
dotnet new
command, enter the following at the command line or in the Visual Studio Code terminal:dotnet help new
- To get help output at the command line, use the
-h
or--help
flag, as shown in the following command:dotnet new console -h
- You will see the following partial output:
Console App (C#) Author: Microsoft Description: A project for creating a command-line application that can run on .NET Core on Windows, Linux and macOS...