Command-line arguments are a common way to parameterize execution of programs. For example, dotnet run Program.cs uses run and Program.cs arguments to the dotnet command.
To experiment with command-line arguments it’s best to build a binary with dotnet build first.
Next we’ll look at more advanced command-line processing with flags.