[[oktatas:programozás:csharp:dotnetcore|< .Net Core]]
====== Parancssori paraméterek ======
* **Szerző:** Sallai András
* Copyright (c) 2024, Sallai András
* Szerkesztve: 2024
* Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC BY-SA 4.0]]
* Web: https://szit.hu
===== Program =====
mkdir app01
cd app01
dotnet new console
class Program {
static void Main(string[] args) {
Console.WriteLine(args.Length);
}
}
dotnet run egy kettő
===== A parraméter =====
class Program {
static void Main(string[] args) {
if(args.Length>0) {
Console.WriteLine(args[0]);
}
}
}
dotnet run egy