I wonder how can one access the command line arguments given this is all that gets generated in the Program.cs file by the new template for Console Application in Visual Studio 2022:
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
Moreover, there is no args variable in scope.
So how to access CLI arguments?


