Skip to content

zharifzubaidi/csharpmasterclasscourse

Repository files navigation

C# Masterclass Udemy Course by Denis Panjuta

Took this course to relearn C# basics from the ground up

Useful Terminal Commands

  1. To create new .NET console project:
    • dotnet new console -o ./
  2. To add new project to solution file (similar to workspace):
    • dotnet sln add .<csproject path>
    • needed if want to run C# intellisense
  3. To build project"
    • dotnet build
  4. To add run the project
    • go to the directory that contain the csprojec file
    • dotnet run (will compile and run)

Useful Visual Studio Shortcuts for C#

  1. Shift + Alt + F: Format the code indentions

About

C# Masterclass Udemy Course by Denis Panjuta

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages