Took this course to relearn C# basics from the ground up
- To create new .NET console project:
- dotnet new console -o ./
- To add new project to solution file (similar to workspace):
- dotnet sln add .<csproject path>
- needed if want to run C# intellisense
- To build project"
- dotnet build
- To add run the project
- go to the directory that contain the csprojec file
- dotnet run (will compile and run)
- Shift + Alt + F: Format the code indentions