2023-05-27 18:32:46 +02:00
|
|
|
|
public class Program {
|
2023-06-03 08:51:24 +02:00
|
|
|
|
static void Main(string[] args) {
|
|
|
|
|
if (args.Length == 0) {
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
|
|
|
Console.WriteLine("Please specify an option.");
|
|
|
|
|
Console.ResetColor();
|
|
|
|
|
} else {
|
|
|
|
|
switch (args[0]) {
|
|
|
|
|
case "":
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-27 18:32:46 +02:00
|
|
|
|
}
|