mkdir app01 cd app01 dotnet new console
class Program { static void Main(string[] args) { Console.WriteLine(args.Length); } }
dotnet run egy kettő
class Program { static void Main(string[] args) { if(args.Length>0) { Console.WriteLine(args[0]); } } }
dotnet run egy