Begin commandline arguments
This commit is contained in:
parent
22ffc338e7
commit
d4dc405b2b
18
Program.cs
18
Program.cs
@ -1,2 +1,16 @@
|
|||||||
// See https://aka.ms/new-console-template for more information
|
public class Program {
|
||||||
Console.WriteLine("Hello, World!");
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user